Enum Act
#[repr(u8)]pub enum Act {
Sync = 0,
Idle = 1,
Rx = 2,
Tx = 3,
}Variants§
Sync = 0
Synchronizing: node is synchronizing on CAN communication.
Idle = 1
Idle: node is neither receiver nor transmitter.
Rx = 2
Receiver: node is operating as receiver.
Tx = 3
Transmitter: node is operating as transmitter.
Implementations§
Trait Implementations§
impl Copy for Act
impl Eq for Act
§impl Ord for Act
impl Ord for Act
1.21.0 (const: unstable) · 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
§impl PartialOrd for Act
impl PartialOrd for Act
impl StructuralPartialEq for Act
Auto Trait Implementations§
impl Freeze for Act
impl RefUnwindSafe for Act
impl Send for Act
impl Sync for Act
impl Unpin for Act
impl UnsafeUnpin for Act
impl UnwindSafe for Act
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