pub enum FCBR {
PAUSEORBACKPRESSURE,
DISABLEBACKPRESSURE,
}
Expand description
Possible values of the field FCB
Variants§
PAUSEORBACKPRESSURE
In full duplex, initiate a Pause control frame. In half duplex, assert back pressure
DISABLEBACKPRESSURE
In half duplex only, deasserts back pressure
Implementations§
Source§impl FCBR
impl FCBR
Sourcepub fn bit_is_clear(&self) -> bool
pub fn bit_is_clear(&self) -> bool
Returns true
if the bit is clear (0)
Sourcepub fn bit_is_set(&self) -> bool
pub fn bit_is_set(&self) -> bool
Returns true
if the bit is set (1)
Sourcepub fn is_pause_or_back_pressure(&self) -> bool
pub fn is_pause_or_back_pressure(&self) -> bool
Checks if the value of the field is PAUSEORBACKPRESSURE
Sourcepub fn is_disable_back_pressure(&self) -> bool
pub fn is_disable_back_pressure(&self) -> bool
Checks if the value of the field is DISABLEBACKPRESSURE
Trait Implementations§
impl Copy for FCBR
impl StructuralPartialEq for FCBR
Auto Trait Implementations§
impl Freeze for FCBR
impl RefUnwindSafe for FCBR
impl Send for FCBR
impl Sync for FCBR
impl Unpin for FCBR
impl UnwindSafe for FCBR
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