#[non_exhaustive]pub enum ImscVersion {
V1_0,
V1_1,
}Expand description
Which IMSC profile version.
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.
Implementations§
Trait Implementations§
Source§impl Clone for ImscVersion
impl Clone for ImscVersion
Source§fn clone(&self) -> ImscVersion
fn clone(&self) -> ImscVersion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ImscVersion
Source§impl Debug for ImscVersion
impl Debug for ImscVersion
Source§impl Display for ImscVersion
impl Display for ImscVersion
impl Eq for ImscVersion
Source§impl PartialEq for ImscVersion
impl PartialEq for ImscVersion
impl StructuralPartialEq for ImscVersion
Auto Trait Implementations§
impl Freeze for ImscVersion
impl RefUnwindSafe for ImscVersion
impl Send for ImscVersion
impl Sync for ImscVersion
impl Unpin for ImscVersion
impl UnsafeUnpin for ImscVersion
impl UnwindSafe for ImscVersion
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