#[repr(u8)]pub enum Slvcontinue {
NO_EFFECT = 0,
CONTINUE = 1,
}Variants§
NO_EFFECT = 0
No effect.
CONTINUE = 1
Continue. Informs the Slave function to continue to the next operation, by clearing the SLVPENDING flag in the STAT register. This must be done after writing transmit data, reading received data, or any other housekeeping related to the next bus operation. Automatic Operation has different requirements. SLVCONTINUE should not be set unless SLVPENDING = 1.
Implementations§
Source§impl Slvcontinue
impl Slvcontinue
Trait Implementations§
Source§impl Clone for Slvcontinue
impl Clone for Slvcontinue
Source§fn clone(&self) -> Slvcontinue
fn clone(&self) -> Slvcontinue
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 Slvcontinue
impl Debug for Slvcontinue
Source§impl From<Slvcontinue> for u8
impl From<Slvcontinue> for u8
Source§fn from(val: Slvcontinue) -> u8
fn from(val: Slvcontinue) -> u8
Converts to this type from the input type.
Source§impl From<u8> for Slvcontinue
impl From<u8> for Slvcontinue
Source§fn from(val: u8) -> Slvcontinue
fn from(val: u8) -> Slvcontinue
Converts to this type from the input type.
Source§impl Ord for Slvcontinue
impl Ord for Slvcontinue
Source§fn cmp(&self, other: &Slvcontinue) -> Ordering
fn cmp(&self, other: &Slvcontinue) -> 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 Slvcontinue
impl PartialEq for Slvcontinue
Source§impl PartialOrd for Slvcontinue
impl PartialOrd for Slvcontinue
impl Copy for Slvcontinue
impl Eq for Slvcontinue
impl StructuralPartialEq for Slvcontinue
Auto Trait Implementations§
impl Freeze for Slvcontinue
impl RefUnwindSafe for Slvcontinue
impl Send for Slvcontinue
impl Sync for Slvcontinue
impl Unpin for Slvcontinue
impl UnwindSafe for Slvcontinue
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