Enum rkyv::net::ArchivedIpAddr [−][src]
#[repr(u8)] pub enum ArchivedIpAddr { V4(ArchivedIpv4Addr), V6(ArchivedIpv6Addr), }
Expand description
An archived IpAddr
.
Variants
An IPv4 address.
Tuple Fields of V4
An IPv6 address.
Tuple Fields of V6
Implementations
Returns true
if this is a loopback address.
See IpAddr::is_loopback()
for more details.
Returns true
if this is a multicast address.
See IpAddr::is_multicast()
for more details.
Returns true
for the special ‘unspecified’ address.
See IpAddr::is_unspecified()
for more details.
Returns true
if this address is an IPv4
address, and false
otherwise.
Returns true
if this address is an IPv6
address, and false
otherwise.
Trait Implementations
impl<__C: ?Sized> CheckBytes<__C> for ArchivedIpAddr where
ArchivedIpv4Addr: CheckBytes<__C>,
ArchivedIpv6Addr: CheckBytes<__C>,
impl<__C: ?Sized> CheckBytes<__C> for ArchivedIpAddr where
ArchivedIpv4Addr: CheckBytes<__C>,
ArchivedIpv6Addr: CheckBytes<__C>,
type Error = EnumCheckError<u8>
type Error = EnumCheckError<u8>
The error that may result from checking the type.
unsafe fn check_bytes<'__bytecheck>(
value: *const Self,
context: &mut __C
) -> Result<&'__bytecheck Self, Self::Error>
unsafe fn check_bytes<'__bytecheck>(
value: *const Self,
context: &mut __C
) -> Result<&'__bytecheck Self, Self::Error>
Checks whether the given pointer points to a valid value within the given context. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for ArchivedIpAddr
impl Send for ArchivedIpAddr
impl Sync for ArchivedIpAddr
impl Unpin for ArchivedIpAddr
impl UnwindSafe for ArchivedIpAddr
Blanket Implementations
type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Converts some archived metadata to the pointer metadata for itself.
Mutably borrows from an owned value. Read more