Struct veilid_tools::Ifv6Addr
source · pub struct Ifv6Addr {
pub ip: Ipv6Addr,
pub netmask: Ipv6Addr,
pub broadcast: Option<Ipv6Addr>,
}Expand description
Details about the ipv6 address of an interface on this host.
Fields§
§ip: Ipv6AddrThe IP address of the interface.
netmask: Ipv6AddrThe netmask of the interface.
broadcast: Option<Ipv6Addr>The broadcast address of the interface.
Trait Implementations§
source§impl Ord for Ifv6Addr
impl Ord for Ifv6Addr
source§impl PartialEq for Ifv6Addr
impl PartialEq for Ifv6Addr
source§impl PartialOrd for Ifv6Addr
impl PartialOrd for Ifv6Addr
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 Eq for Ifv6Addr
impl StructuralPartialEq for Ifv6Addr
Auto Trait Implementations§
impl Freeze for Ifv6Addr
impl RefUnwindSafe for Ifv6Addr
impl Send for Ifv6Addr
impl Sync for Ifv6Addr
impl Unpin for Ifv6Addr
impl UnwindSafe for Ifv6Addr
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> CmpAssign for Twhere
T: Ord,
impl<T> CmpAssign for Twhere
T: Ord,
fn min_assign(&mut self, other: T)
fn max_assign(&mut self, other: T)
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more