#[repr(u8)]pub enum Mstcontinue {
NO_EFFECT = 0,
CONTINUE = 1,
}Variants§
NO_EFFECT = 0
No effect.
CONTINUE = 1
Continue. Informs the Master function to continue to the next operation. This must done after writing transmit data, reading received data, or any other housekeeping related to the next bus operation.
Implementations§
Source§impl Mstcontinue
impl Mstcontinue
Trait Implementations§
Source§impl Clone for Mstcontinue
impl Clone for Mstcontinue
Source§fn clone(&self) -> Mstcontinue
fn clone(&self) -> Mstcontinue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Mstcontinue
impl Debug for Mstcontinue
Source§impl From<Mstcontinue> for u8
impl From<Mstcontinue> for u8
Source§fn from(val: Mstcontinue) -> u8
fn from(val: Mstcontinue) -> u8
Converts to this type from the input type.
Source§impl From<u8> for Mstcontinue
impl From<u8> for Mstcontinue
Source§fn from(val: u8) -> Mstcontinue
fn from(val: u8) -> Mstcontinue
Converts to this type from the input type.
Source§impl Ord for Mstcontinue
impl Ord for Mstcontinue
Source§fn cmp(&self, other: &Mstcontinue) -> Ordering
fn cmp(&self, other: &Mstcontinue) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for Mstcontinue
impl PartialEq for Mstcontinue
Source§impl PartialOrd for Mstcontinue
impl PartialOrd for Mstcontinue
impl Copy for Mstcontinue
impl Eq for Mstcontinue
impl StructuralPartialEq for Mstcontinue
Auto Trait Implementations§
impl Freeze for Mstcontinue
impl RefUnwindSafe for Mstcontinue
impl Send for Mstcontinue
impl Sync for Mstcontinue
impl Unpin for Mstcontinue
impl UnwindSafe for Mstcontinue
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