#[non_exhaustive]pub enum BridgeMulticastRouterType {
Disabled,
TempQuery,
Permanent,
Temp,
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.
Implementations§
Trait Implementations§
Source§impl Clone for BridgeMulticastRouterType
impl Clone for BridgeMulticastRouterType
Source§fn clone(&self) -> BridgeMulticastRouterType
fn clone(&self) -> BridgeMulticastRouterType
Returns a duplicate 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 BridgeMulticastRouterType
impl Debug for BridgeMulticastRouterType
Source§impl From<BridgeMulticastRouterType> for u8
impl From<BridgeMulticastRouterType> for u8
Source§fn from(v: BridgeMulticastRouterType) -> u8
fn from(v: BridgeMulticastRouterType) -> u8
Converts to this type from the input type.
Source§impl From<u8> for BridgeMulticastRouterType
impl From<u8> for BridgeMulticastRouterType
impl Copy for BridgeMulticastRouterType
impl Eq for BridgeMulticastRouterType
impl StructuralPartialEq for BridgeMulticastRouterType
Auto Trait Implementations§
impl Freeze for BridgeMulticastRouterType
impl RefUnwindSafe for BridgeMulticastRouterType
impl Send for BridgeMulticastRouterType
impl Sync for BridgeMulticastRouterType
impl Unpin for BridgeMulticastRouterType
impl UnwindSafe for BridgeMulticastRouterType
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