Enum sdio_host::sd::SDSpecVersion
source · [−]#[non_exhaustive]
pub enum SDSpecVersion {
V1_0,
V1_10,
V2,
V3,
V4,
V5,
V6,
V7,
Unknown,
}
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.
V1_0
Version 1.0 and and 1.0.1
V1_10
Version 1.10
V2
Version 2.0
V3
Version 3.0
V4
Version 4.0
V5
Version 5.0
V6
Version 6.0
V7
Version 7.0
Unknown
Version not known by this crate
Trait Implementations
sourceimpl Clone for SDSpecVersion
impl Clone for SDSpecVersion
sourcefn clone(&self) -> SDSpecVersion
fn clone(&self) -> SDSpecVersion
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SDSpecVersion
impl Debug for SDSpecVersion
sourceimpl PartialEq<SDSpecVersion> for SDSpecVersion
impl PartialEq<SDSpecVersion> for SDSpecVersion
impl Copy for SDSpecVersion
impl Eq for SDSpecVersion
impl StructuralEq for SDSpecVersion
impl StructuralPartialEq for SDSpecVersion
Auto Trait Implementations
impl RefUnwindSafe for SDSpecVersion
impl Send for SDSpecVersion
impl Sync for SDSpecVersion
impl Unpin for SDSpecVersion
impl UnwindSafe for SDSpecVersion
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more