pub struct Cdnskey<Octs> { /* private fields */ }
Implementations§
source§impl<Octs> Cdnskey<Octs>
impl<Octs> Cdnskey<Octs>
pub fn new( flags: u16, protocol: u8, algorithm: SecAlg, public_key: Octs ) -> Result<Self, LongRecordData>where Octs: AsRef<[u8]>,
sourcepub unsafe fn new_unchecked(
flags: u16,
protocol: u8,
algorithm: SecAlg,
public_key: Octs
) -> Self
pub unsafe fn new_unchecked( flags: u16, protocol: u8, algorithm: SecAlg, public_key: Octs ) -> Self
Creates new CDNSKEY record data without checking.
Safety
The caller needs to ensure that wire format representation of the record data is at most 65,535 octets long.
pub fn flags(&self) -> u16
pub fn protocol(&self) -> u8
pub fn algorithm(&self) -> SecAlg
pub fn public_key(&self) -> &Octs
pub fn parse<'a, Src: Octets<Range<'a> = Octs> + ?Sized>( parser: &mut Parser<'a, Src> ) -> Result<Self, ParseError>
pub fn scan<S: Scanner<Octets = Octs>>( scanner: &mut S ) -> Result<Self, S::Error>where Octs: AsRef<[u8]>,
source§impl<SrcOcts> Cdnskey<SrcOcts>
impl<SrcOcts> Cdnskey<SrcOcts>
pub fn flatten_into<Octs>(self) -> Result<Cdnskey<Octs>, PushError>where Octs: OctetsFrom<SrcOcts>,
Trait Implementations§
source§impl<Octs, Other> CanonicalOrd<Cdnskey<Other>> for Cdnskey<Octs>where
Octs: AsRef<[u8]>,
Other: AsRef<[u8]>,
impl<Octs, Other> CanonicalOrd<Cdnskey<Other>> for Cdnskey<Octs>where Octs: AsRef<[u8]>, Other: AsRef<[u8]>,
source§fn canonical_cmp(&self, other: &Cdnskey<Other>) -> Ordering
fn canonical_cmp(&self, other: &Cdnskey<Other>) -> Ordering
Returns the canonical ordering between
self
and other
.source§fn canonical_lt(&self, other: &Rhs) -> bool
fn canonical_lt(&self, other: &Rhs) -> bool
Returns whether
self
is canonically less than other
.source§fn canonical_le(&self, other: &Rhs) -> bool
fn canonical_le(&self, other: &Rhs) -> bool
Returns whether
self
is canonically less than or equal to other
.source§fn canonical_gt(&self, other: &Rhs) -> bool
fn canonical_gt(&self, other: &Rhs) -> bool
Returns whether
self
is canonically greater than other
.source§fn canonical_ge(&self, other: &Rhs) -> bool
fn canonical_ge(&self, other: &Rhs) -> bool
Returns whether
self
is canonically greater than or equal to other
.source§impl<Octs: AsRef<[u8]>> ComposeRecordData for Cdnskey<Octs>
impl<Octs: AsRef<[u8]>> ComposeRecordData for Cdnskey<Octs>
source§fn rdlen(&self, _compress: bool) -> Option<u16>
fn rdlen(&self, _compress: bool) -> Option<u16>
Returns the length of the record data if available. Read more
source§fn compose_rdata<Target: Composer + ?Sized>(
&self,
target: &mut Target
) -> Result<(), Target::AppendError>
fn compose_rdata<Target: Composer + ?Sized>( &self, target: &mut Target ) -> Result<(), Target::AppendError>
Appends the wire format of the record data into
target
.source§fn compose_canonical_rdata<Target: Composer + ?Sized>(
&self,
target: &mut Target
) -> Result<(), Target::AppendError>
fn compose_canonical_rdata<Target: Composer + ?Sized>( &self, target: &mut Target ) -> Result<(), Target::AppendError>
Appends the canonical wire format of the record data into
target
.source§fn compose_len_rdata<Target: Composer + ?Sized>(
&self,
target: &mut Target
) -> Result<(), Target::AppendError>
fn compose_len_rdata<Target: Composer + ?Sized>( &self, target: &mut Target ) -> Result<(), Target::AppendError>
Appends the record data prefixed with its length.
source§fn compose_canonical_len_rdata<Target: Composer + ?Sized>(
&self,
target: &mut Target
) -> Result<(), Target::AppendError>
fn compose_canonical_len_rdata<Target: Composer + ?Sized>( &self, target: &mut Target ) -> Result<(), Target::AppendError>
Appends the record data prefixed with its length.
source§impl<O, N> From<Cdnskey<O>> for AllRecordData<O, N>
impl<O, N> From<Cdnskey<O>> for AllRecordData<O, N>
source§impl<O, N> From<Cdnskey<O>> for ZoneRecordData<O, N>
impl<O, N> From<Cdnskey<O>> for ZoneRecordData<O, N>
source§impl<Octs, SrcOcts> OctetsFrom<Cdnskey<SrcOcts>> for Cdnskey<Octs>where
Octs: OctetsFrom<SrcOcts>,
impl<Octs, SrcOcts> OctetsFrom<Cdnskey<SrcOcts>> for Cdnskey<Octs>where Octs: OctetsFrom<SrcOcts>,
type Error = <Octs as OctetsFrom<SrcOcts>>::Error
source§impl<Octs: AsRef<[u8]>> Ord for Cdnskey<Octs>
impl<Octs: AsRef<[u8]>> Ord for Cdnskey<Octs>
source§impl<'a, Octs> ParseRecordData<'a, Octs> for Cdnskey<Octs::Range<'a>>where
Octs: Octets + ?Sized,
impl<'a, Octs> ParseRecordData<'a, Octs> for Cdnskey<Octs::Range<'a>>where Octs: Octets + ?Sized,
source§fn parse_rdata(
rtype: Rtype,
parser: &mut Parser<'a, Octs>
) -> Result<Option<Self>, ParseError>
fn parse_rdata( rtype: Rtype, parser: &mut Parser<'a, Octs> ) -> Result<Option<Self>, ParseError>
Parses the record data. Read more
source§impl<Octs, Other> PartialEq<Cdnskey<Other>> for Cdnskey<Octs>where
Octs: AsRef<[u8]>,
Other: AsRef<[u8]>,
impl<Octs, Other> PartialEq<Cdnskey<Other>> for Cdnskey<Octs>where Octs: AsRef<[u8]>, Other: AsRef<[u8]>,
source§impl<Octs, Other> PartialOrd<Cdnskey<Other>> for Cdnskey<Octs>where
Octs: AsRef<[u8]>,
Other: AsRef<[u8]>,
impl<Octs, Other> PartialOrd<Cdnskey<Other>> for Cdnskey<Octs>where Octs: AsRef<[u8]>, Other: AsRef<[u8]>,
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl<Octs> RecordData for Cdnskey<Octs>
impl<Octs> RecordData for Cdnskey<Octs>
impl<Octs: AsRef<[u8]>> Eq for Cdnskey<Octs>
Auto Trait Implementations§
impl<Octs> RefUnwindSafe for Cdnskey<Octs>where Octs: RefUnwindSafe,
impl<Octs> Send for Cdnskey<Octs>where Octs: Send,
impl<Octs> Sync for Cdnskey<Octs>where Octs: Sync,
impl<Octs> Unpin for Cdnskey<Octs>where Octs: Unpin,
impl<Octs> UnwindSafe for Cdnskey<Octs>where Octs: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Source, Target> OctetsInto<Target> for Sourcewhere
Target: OctetsFrom<Source>,
impl<Source, Target> OctetsInto<Target> for Sourcewhere Target: OctetsFrom<Source>,
type Error = <Target as OctetsFrom<Source>>::Error
source§fn try_octets_into(
self
) -> Result<Target, <Source as OctetsInto<Target>>::Error>
fn try_octets_into( self ) -> Result<Target, <Source as OctetsInto<Target>>::Error>
Performs the conversion.
source§fn octets_into(self) -> Targetwhere
Self::Error: Into<Infallible>,
fn octets_into(self) -> Targetwhere Self::Error: Into<Infallible>,
Performs an infallible conversion.