#[repr(i32)]pub enum MacAddressFilterMode {
    Disabled = 0,
    Allow = 1,
    Deny = 2,
}Expand description
Describes the address filtering mode of the interface.
Variants§
Disabled = 0
Address filtering is disabled. All packets that are received are processed normally.
Allow = 1
Only packets that have addresses matching an address in the filter list will be allowed to be processed. All other packets are dropped as if they were never received.
Additionally, if an RSSI value was associated with an item, that value will be substituted for internal routing considerations.
Deny = 2
All packets from addresses in the filter list will be dropped.
Implementations§
Source§impl MacAddressFilterMode
 
impl MacAddressFilterMode
pub fn from_primitive(prim: i32) -> Option<MacAddressFilterMode>
pub const fn into_primitive(self) -> i32
Trait Implementations§
Source§impl Clone for MacAddressFilterMode
 
impl Clone for MacAddressFilterMode
Source§fn clone(&self) -> MacAddressFilterMode
 
fn clone(&self) -> MacAddressFilterMode
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 MacAddressFilterMode
 
impl Debug for MacAddressFilterMode
Source§impl<D> Decode<MacAddressFilterMode, D> for MacAddressFilterModewhere
    D: ResourceDialect,
 
impl<D> Decode<MacAddressFilterMode, D> for MacAddressFilterModewhere
    D: ResourceDialect,
Source§fn new_empty() -> MacAddressFilterMode
 
fn new_empty() -> MacAddressFilterMode
Creates a valid instance of 
Self. The specific value does not matter,
since it will be overwritten by decode.Source§impl<D> Encode<MacAddressFilterMode, D> for MacAddressFilterModewhere
    D: ResourceDialect,
 
impl<D> Encode<MacAddressFilterMode, D> for MacAddressFilterModewhere
    D: ResourceDialect,
Source§impl Hash for MacAddressFilterMode
 
impl Hash for MacAddressFilterMode
Source§impl Ord for MacAddressFilterMode
 
impl Ord for MacAddressFilterMode
Source§fn cmp(&self, other: &MacAddressFilterMode) -> Ordering
 
fn cmp(&self, other: &MacAddressFilterMode) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
    Self: Sized,
 
fn max(self, other: Self) -> Selfwhere
    Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MacAddressFilterMode
 
impl PartialEq for MacAddressFilterMode
Source§impl PartialOrd for MacAddressFilterMode
 
impl PartialOrd for MacAddressFilterMode
Source§impl TypeMarker for MacAddressFilterMode
 
impl TypeMarker for MacAddressFilterMode
Source§type Owned = MacAddressFilterMode
 
type Owned = MacAddressFilterMode
The owned Rust type which this FIDL type decodes into.
Source§fn inline_align(_context: Context) -> usize
 
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
Source§fn inline_size(_context: Context) -> usize
 
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of 
inline_align.Source§fn encode_is_copy() -> bool
 
fn encode_is_copy() -> bool
Returns true if the memory layout of 
Self::Owned matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned to a single memcpy. Read moreSource§fn decode_is_copy() -> bool
 
fn decode_is_copy() -> bool
Returns true if the memory layout of 
Self::Owned matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned to a single memcpy.Source§impl ValueTypeMarker for MacAddressFilterMode
 
impl ValueTypeMarker for MacAddressFilterMode
Source§type Borrowed<'a> = MacAddressFilterMode
 
type Borrowed<'a> = MacAddressFilterMode
The Rust type to use for encoding. This is a particular 
Encode<Self>
type cheaply obtainable from &Self::Owned. There are three cases: Read moreSource§fn borrow(
    value: &<MacAddressFilterMode as TypeMarker>::Owned,
) -> <MacAddressFilterMode as ValueTypeMarker>::Borrowed<'_>
 
fn borrow( value: &<MacAddressFilterMode as TypeMarker>::Owned, ) -> <MacAddressFilterMode as ValueTypeMarker>::Borrowed<'_>
Cheaply converts from 
&Self::Owned to Self::Borrowed.impl Copy for MacAddressFilterMode
impl Eq for MacAddressFilterMode
impl StructuralPartialEq for MacAddressFilterMode
Auto Trait Implementations§
impl Freeze for MacAddressFilterMode
impl RefUnwindSafe for MacAddressFilterMode
impl Send for MacAddressFilterMode
impl Sync for MacAddressFilterMode
impl Unpin for MacAddressFilterMode
impl UnwindSafe for MacAddressFilterMode
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