pub enum MBR {
NORMAL,
MIXED,
}
Expand description
Possible values of the field MB
Variants§
NORMAL
Fixed burst transfers (INCRx and SINGLE) for burst lengths of 16 and below
MIXED
If FB is low, start all bursts greater than 16 with INCR (undefined burst)
Implementations§
Source§impl MBR
impl MBR
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)
Trait Implementations§
impl Copy for MBR
impl StructuralPartialEq for MBR
Auto Trait Implementations§
impl Freeze for MBR
impl RefUnwindSafe for MBR
impl Send for MBR
impl Sync for MBR
impl Unpin for MBR
impl UnwindSafe for MBR
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