pub enum SicdVersion {
V0_3_1,
V0_4_0,
V0_4_1,
V0_5_0,
V1_0_0,
V1_0_1,
V1_1_0,
V1_2_0,
V1_2_1,
V1_3_0,
}
Variants§
Trait Implementations§
Source§impl Debug for SicdVersion
impl Debug for SicdVersion
Source§impl<'de> Deserialize<'de> for SicdVersion
impl<'de> Deserialize<'de> for SicdVersion
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl FromStr for SicdVersion
impl FromStr for SicdVersion
Source§impl PartialEq for SicdVersion
impl PartialEq for SicdVersion
impl StructuralPartialEq for SicdVersion
Auto Trait Implementations§
impl Freeze for SicdVersion
impl RefUnwindSafe for SicdVersion
impl Send for SicdVersion
impl Sync for SicdVersion
impl Unpin for SicdVersion
impl UnwindSafe for SicdVersion
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more