#[non_exhaustive]pub enum AddressFamily {
Unspec,
Local,
Unix,
Inet,
Inet6,
Other(u8),
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
source§impl Clone for AddressFamily
impl Clone for AddressFamily
source§fn clone(&self) -> AddressFamily
fn clone(&self) -> AddressFamily
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AddressFamily
impl Debug for AddressFamily
source§impl Default for AddressFamily
impl Default for AddressFamily
source§fn default() -> AddressFamily
fn default() -> AddressFamily
Returns the “default value” for a type. Read more
source§impl From<AddressFamily> for u8
impl From<AddressFamily> for u8
source§fn from(v: AddressFamily) -> u8
fn from(v: AddressFamily) -> u8
Converts to this type from the input type.
source§impl From<u8> for AddressFamily
impl From<u8> for AddressFamily
source§impl<'a, T: AsRef<[u8]> + 'a> ParseableParametrized<LinkMessageBuffer<&'a T>, AddressFamily> for Vec<LinkAttribute>
impl<'a, T: AsRef<[u8]> + 'a> ParseableParametrized<LinkMessageBuffer<&'a T>, AddressFamily> for Vec<LinkAttribute>
source§fn parse_with_param(
buf: &LinkMessageBuffer<&'a T>,
family: AddressFamily
) -> Result<Self, DecodeError>
fn parse_with_param( buf: &LinkMessageBuffer<&'a T>, family: AddressFamily ) -> Result<Self, DecodeError>
Deserialize the current type.
source§impl<'a, T: AsRef<[u8]> + 'a> ParseableParametrized<NeighbourMessageBuffer<&'a T>, AddressFamily> for Vec<NeighbourAttribute>
impl<'a, T: AsRef<[u8]> + 'a> ParseableParametrized<NeighbourMessageBuffer<&'a T>, AddressFamily> for Vec<NeighbourAttribute>
source§fn parse_with_param(
buf: &NeighbourMessageBuffer<&'a T>,
address_family: AddressFamily
) -> Result<Self, DecodeError>
fn parse_with_param( buf: &NeighbourMessageBuffer<&'a T>, address_family: AddressFamily ) -> Result<Self, DecodeError>
Deserialize the current type.
source§impl<'a, T: AsRef<[u8]> + ?Sized> ParseableParametrized<NlaBuffer<&'a T>, AddressFamily> for LinkAttribute
impl<'a, T: AsRef<[u8]> + ?Sized> ParseableParametrized<NlaBuffer<&'a T>, AddressFamily> for LinkAttribute
source§fn parse_with_param(
buf: &NlaBuffer<&'a T>,
interface_family: AddressFamily
) -> Result<Self, DecodeError>
fn parse_with_param( buf: &NlaBuffer<&'a T>, interface_family: AddressFamily ) -> Result<Self, DecodeError>
Deserialize the current type.
source§impl<'a, T: AsRef<[u8]> + ?Sized> ParseableParametrized<NlaBuffer<&'a T>, AddressFamily> for NeighbourAttribute
impl<'a, T: AsRef<[u8]> + ?Sized> ParseableParametrized<NlaBuffer<&'a T>, AddressFamily> for NeighbourAttribute
source§fn parse_with_param(
buf: &NlaBuffer<&'a T>,
address_family: AddressFamily
) -> Result<Self, DecodeError>
fn parse_with_param( buf: &NlaBuffer<&'a T>, address_family: AddressFamily ) -> Result<Self, DecodeError>
Deserialize the current type.
source§impl PartialEq for AddressFamily
impl PartialEq for AddressFamily
source§fn eq(&self, other: &AddressFamily) -> bool
fn eq(&self, other: &AddressFamily) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for AddressFamily
impl Eq for AddressFamily
impl StructuralEq for AddressFamily
impl StructuralPartialEq for AddressFamily
Auto Trait Implementations§
impl RefUnwindSafe for AddressFamily
impl Send for AddressFamily
impl Sync for AddressFamily
impl Unpin for AddressFamily
impl UnwindSafe for AddressFamily
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