#[non_exhaustive]pub enum BusWidth {
Bit1,
Bit4,
Bit8,
}Expand description
SD/SDIO/MMC bus width.
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§
impl Copy for BusWidth
impl Eq for BusWidth
impl StructuralPartialEq for BusWidth
Auto Trait Implementations§
impl Freeze for BusWidth
impl RefUnwindSafe for BusWidth
impl Send for BusWidth
impl Sync for BusWidth
impl Unpin for BusWidth
impl UnsafeUnpin for BusWidth
impl UnwindSafe for BusWidth
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