#[repr(u8)]pub enum Pcf {
FLTR_ALL = 0,
FW_XCPT_PAU = 1,
FW_ALL = 2,
FW_PASS = 3,
}Variants§
FLTR_ALL = 0
MAC filters all control packets from reaching the application
FW_XCPT_PAU = 1
MAC forwards all control packets except Pause packets to the application even if they fail the Address filter
FW_ALL = 2
MAC forwards all control packets to the application even if they fail the Address filter
FW_PASS = 3
MAC forwards the control packets that pass the Address filter
Implementations§
Trait Implementations§
Source§impl Ord for Pcf
impl Ord for Pcf
Source§impl PartialOrd for Pcf
impl PartialOrd for Pcf
impl Copy for Pcf
impl Eq for Pcf
impl StructuralPartialEq for Pcf
Auto Trait Implementations§
impl Freeze for Pcf
impl RefUnwindSafe for Pcf
impl Send for Pcf
impl Sync for Pcf
impl Unpin for Pcf
impl UnwindSafe for Pcf
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