pub enum InstVariant {
Some,
None,
Ok,
Err,
}
Expand description
A variant that can be constructed.
Variants§
Some
Option::Some
, which uses one value.
None
Option::None
, which uses no values.
Ok
Result::Ok
, which uses one value.
Err
Result::Err
, which uses one value.
Trait Implementations§
Source§impl Clone for InstVariant
impl Clone for InstVariant
Source§fn clone(&self) -> InstVariant
fn clone(&self) -> InstVariant
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 InstVariant
impl Debug for InstVariant
Source§impl<'de> Decode<'de, Binary> for InstVariant
impl<'de> Decode<'de, Binary> for InstVariant
Source§impl<'de> Decode<'de, Text> for InstVariant
impl<'de> Decode<'de, Text> for InstVariant
Source§impl<'de> Deserialize<'de> for InstVariant
impl<'de> Deserialize<'de> for InstVariant
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 Display for InstVariant
impl Display for InstVariant
Source§impl Encode<Binary> for InstVariant
impl Encode<Binary> for InstVariant
Source§impl Encode<Text> for InstVariant
impl Encode<Text> for InstVariant
Source§impl Serialize for InstVariant
impl Serialize for InstVariant
Source§impl TryClone for InstVariant
impl TryClone for InstVariant
impl Copy for InstVariant
Auto Trait Implementations§
impl Freeze for InstVariant
impl RefUnwindSafe for InstVariant
impl Send for InstVariant
impl Sync for InstVariant
impl Unpin for InstVariant
impl UnwindSafe for InstVariant
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)