#[non_exhaustive]pub enum BridgeQuerierState {
Ipv4Address(Ipv4Addr),
Ipv4Port(u32),
Ipv4OtherTimer(u64),
Ipv6Address(Ipv6Addr),
Ipv6Port(u32),
Ipv6OtherTimer(u64),
Other(DefaultNla),
}
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.
Ipv4Address(Ipv4Addr)
Ipv4Port(u32)
Ipv4OtherTimer(u64)
Ipv6Address(Ipv6Addr)
Ipv6Port(u32)
Ipv6OtherTimer(u64)
Other(DefaultNla)
Trait Implementations§
source§impl Clone for BridgeQuerierState
impl Clone for BridgeQuerierState
source§fn clone(&self) -> BridgeQuerierState
fn clone(&self) -> BridgeQuerierState
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 BridgeQuerierState
impl Debug for BridgeQuerierState
source§impl Nla for BridgeQuerierState
impl Nla for BridgeQuerierState
source§impl PartialEq for BridgeQuerierState
impl PartialEq for BridgeQuerierState
source§fn eq(&self, other: &BridgeQuerierState) -> bool
fn eq(&self, other: &BridgeQuerierState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for BridgeQuerierState
impl StructuralEq for BridgeQuerierState
impl StructuralPartialEq for BridgeQuerierState
Auto Trait Implementations§
impl RefUnwindSafe for BridgeQuerierState
impl Send for BridgeQuerierState
impl Sync for BridgeQuerierState
impl Unpin for BridgeQuerierState
impl UnwindSafe for BridgeQuerierState
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