Enum Status
#[repr(u8)]pub enum Status {
B_0X0 = 0,
B_0X1 = 1,
B_0X2 = 2,
_RESERVED_3 = 3,
}Variants§
B_0X0 = 0
IDLE no switch requested.
B_0X1 = 1
ONGOING clock frequency switch is ongoing.
B_0X2 = 2
DONE clock frequency switch done.
_RESERVED_3 = 3
Implementations§
Trait Implementations§
§impl Ord for Status
impl Ord for Status
§impl PartialOrd for Status
impl PartialOrd for Status
impl Copy for Status
impl Eq for Status
impl StructuralPartialEq for Status
Auto Trait Implementations§
impl Freeze for Status
impl RefUnwindSafe for Status
impl Send for Status
impl Sync for Status
impl Unpin for Status
impl UnwindSafe for Status
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