#[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§
Source§impl Clone for SDSpecVersion
impl Clone for SDSpecVersion
Source§fn clone(&self) -> SDSpecVersion
fn clone(&self) -> SDSpecVersion
Returns a copy 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 Debug for SDSpecVersion
impl Debug for SDSpecVersion
Source§impl PartialEq for SDSpecVersion
impl PartialEq for SDSpecVersion
impl Copy for SDSpecVersion
impl Eq for SDSpecVersion
impl StructuralPartialEq for SDSpecVersion
Auto Trait Implementations§
impl Freeze for SDSpecVersion
impl RefUnwindSafe for SDSpecVersion
impl Send for SDSpecVersion
impl Sync for SDSpecVersion
impl Unpin for SDSpecVersion
impl UnwindSafe for SDSpecVersion
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