pub enum SAR {
DESTINATION,
SOURCE,
}
Expand description
Possible values of the field SA
Variants§
DESTINATION
This address is used for comparison with DA fields of the received frame
SOURCE
This address is used for comparison with SA fields of received frames
Implementations§
Source§impl SAR
impl SAR
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_destination(&self) -> bool
pub fn is_destination(&self) -> bool
Checks if the value of the field is DESTINATION
Trait Implementations§
impl Copy for SAR
impl StructuralPartialEq for SAR
Auto Trait Implementations§
impl Freeze for SAR
impl RefUnwindSafe for SAR
impl Send for SAR
impl Sync for SAR
impl Unpin for SAR
impl UnwindSafe for SAR
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