Enum Nres
#[repr(u8)]pub enum Nres {
NUM1 = 0,
NUM2 = 1,
}
Variants§
NUM1 = 0
Only single result value will be returned. After a single read RRDY will be automatically cleared.
NUM2 = 1
Two return reads need to be performed. After two reads RRDY will be automatically cleared.
Implementations§
Trait Implementations§
§impl Ord for Nres
impl Ord for Nres
§impl PartialOrd for Nres
impl PartialOrd for Nres
impl Copy for Nres
impl Eq for Nres
impl StructuralPartialEq for Nres
Auto Trait Implementations§
impl Freeze for Nres
impl RefUnwindSafe for Nres
impl Send for Nres
impl Sync for Nres
impl Unpin for Nres
impl UnwindSafe for Nres
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