pub struct Expire(_);
Expand description
Option data for the Expire EDNS option.
The option’s data consists of an optional u32
. The value is omitted if
the option is added to a query to request it being included by the server
in an answer. In this answer the value should be present and indicates the
expire time of the zone on the server.
See RFC 7314 for details.
Implementations§
Trait Implementations§
source§impl ComposeOptData for Expire
impl ComposeOptData for Expire
fn compose_len(&self) -> u16
fn compose_option<Target: OctetsBuilder + ?Sized>( &self, target: &mut Target ) -> Result<(), Target::AppendError>
source§impl<Octs, Name> From<Expire> for AllOptData<Octs, Name>
impl<Octs, Name> From<Expire> for AllOptData<Octs, Name>
source§impl OptData for Expire
impl OptData for Expire
source§fn code(&self) -> OptionCode
fn code(&self) -> OptionCode
Returns the option code associated with this option.
source§impl Ord for Expire
impl Ord for Expire
source§impl<'a, Octs: AsRef<[u8]>> ParseOptData<'a, Octs> for Expire
impl<'a, Octs: AsRef<[u8]>> ParseOptData<'a, Octs> for Expire
source§fn parse_option(
code: OptionCode,
parser: &mut Parser<'a, Octs>
) -> Result<Option<Self>, ParseError>
fn parse_option( code: OptionCode, parser: &mut Parser<'a, Octs> ) -> Result<Option<Self>, ParseError>
Parses the option code data. Read more
source§impl PartialEq<Expire> for Expire
impl PartialEq<Expire> for Expire
source§impl PartialOrd<Expire> for Expire
impl PartialOrd<Expire> for Expire
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 moreimpl Copy for Expire
impl Eq for Expire
impl StructuralEq for Expire
impl StructuralPartialEq for Expire
Auto Trait Implementations§
impl RefUnwindSafe for Expire
impl Send for Expire
impl Sync for Expire
impl Unpin for Expire
impl UnwindSafe for Expire
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.