Enum Incmode
#[repr(u8)]pub enum Incmode {
FIXED = 0,
RESERVED = 1,
INCREMENT = 2,
DECREMENT = 3,
}Variants§
FIXED = 0
Address pointer is fixed
RESERVED = 1
Reserved
INCREMENT = 2
Address pointer is incremented after each data transfer
DECREMENT = 3
Address pointer is decremented after each data transfer
Implementations§
Trait Implementations§
§impl Ord for Incmode
impl Ord for Incmode
§impl PartialOrd for Incmode
impl PartialOrd for Incmode
impl Copy for Incmode
impl Eq for Incmode
impl StructuralPartialEq for Incmode
Auto Trait Implementations§
impl Freeze for Incmode
impl RefUnwindSafe for Incmode
impl Send for Incmode
impl Sync for Incmode
impl Unpin for Incmode
impl UnwindSafe for Incmode
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