#[repr(u8)]pub enum Actstate {
NO_LATENCY = 0,
LATENCY_1MS = 1,
LATENCY_100MS = 2,
LATENCY_10S = 3,
}Variants§
NO_LATENCY = 0
NO_LATENCY (normal bus operations)
LATENCY_1MS = 1
LATENCY_1MS (1 ms of latency)
LATENCY_100MS = 2
LATENCY_100MS (100 ms of latency)
LATENCY_10S = 3
LATENCY_10S (10 seconds of latency)
Implementations§
Trait Implementations§
Source§impl Ord for Actstate
impl Ord for Actstate
Source§impl PartialOrd for Actstate
impl PartialOrd for Actstate
impl Copy for Actstate
impl Eq for Actstate
impl StructuralPartialEq for Actstate
Auto Trait Implementations§
impl Freeze for Actstate
impl RefUnwindSafe for Actstate
impl Send for Actstate
impl Sync for Actstate
impl Unpin for Actstate
impl UnwindSafe for Actstate
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