#[non_exhaustive]pub enum VddLevel {
MidDriveMode,
OverDriveMode,
}Expand description
Selected VDD Power Mode
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
MidDriveMode
Standard “mid drive” “MD” power, 1.0v VDD Core
OverDriveMode
Overdrive “OD” power, 1.2v VDD Core
Trait Implementations§
impl Copy for VddLevel
impl StructuralPartialEq for VddLevel
Auto Trait Implementations§
impl Freeze for VddLevel
impl RefUnwindSafe for VddLevel
impl Send for VddLevel
impl Sync for VddLevel
impl Unpin for VddLevel
impl UnwindSafe for VddLevel
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