#[non_exhaustive]pub enum VddDriveStrength {
Low {
enable_bandgap: bool,
},
Normal,
}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.
Trait Implementations§
Source§impl Clone for VddDriveStrength
impl Clone for VddDriveStrength
Source§fn clone(&self) -> VddDriveStrength
fn clone(&self) -> VddDriveStrength
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 PartialEq for VddDriveStrength
impl PartialEq for VddDriveStrength
impl Copy for VddDriveStrength
impl StructuralPartialEq for VddDriveStrength
Auto Trait Implementations§
impl Freeze for VddDriveStrength
impl RefUnwindSafe for VddDriveStrength
impl Send for VddDriveStrength
impl Sync for VddDriveStrength
impl Unpin for VddDriveStrength
impl UnwindSafe for VddDriveStrength
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