pub enum SicdMeta {
V0_3_1,
V0_4_0(SicdMeta),
V0_4_1,
V0_5_0(SicdMeta),
V1(SicdMeta),
}Variants§
Implementations§
Source§impl SicdMeta
impl SicdMeta
pub fn get_v0_3_1_meta(self) -> SicdError
pub fn get_v0_4_0_meta(self) -> Option<SicdMeta>
pub fn get_v0_4_1_meta(self) -> SicdError
pub fn get_v0_5_0_meta(self) -> Option<SicdMeta>
pub fn get_v1_meta(self) -> Option<SicdMeta>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SicdMeta
impl RefUnwindSafe for SicdMeta
impl Send for SicdMeta
impl Sync for SicdMeta
impl Unpin for SicdMeta
impl UnwindSafe for SicdMeta
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