pub enum HPFR {
HASHONLY,
HASHORPERFECT,
}
Expand description
Possible values of the field HPF
Variants§
HASHONLY
If HM or HU is set, only frames that match the Hash filter are passed
HASHORPERFECT
If HM or HU is set, frames that match either the perfect filter or the hash filter are passed
Implementations§
Source§impl HPFR
impl HPFR
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_hash_only(&self) -> bool
pub fn is_hash_only(&self) -> bool
Checks if the value of the field is HASHONLY
Sourcepub fn is_hash_or_perfect(&self) -> bool
pub fn is_hash_or_perfect(&self) -> bool
Checks if the value of the field is HASHORPERFECT
Trait Implementations§
impl Copy for HPFR
impl StructuralPartialEq for HPFR
Auto Trait Implementations§
impl Freeze for HPFR
impl RefUnwindSafe for HPFR
impl Send for HPFR
impl Sync for HPFR
impl Unpin for HPFR
impl UnwindSafe for HPFR
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