pub enum IssuanceType {
ISSUANCE_BY_DEFAULT,
ISSUANCE_ON_DEMAND,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for IssuanceType
impl Clone for IssuanceType
Source§fn clone(&self) -> IssuanceType
fn clone(&self) -> IssuanceType
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 IssuanceType
Source§impl Debug for IssuanceType
impl Debug for IssuanceType
Source§impl Default for IssuanceType
impl Default for IssuanceType
Source§fn default() -> IssuanceType
fn default() -> IssuanceType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IssuanceType
impl<'de> Deserialize<'de> for IssuanceType
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<IssuanceType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<IssuanceType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for IssuanceType
Source§impl FromStr for IssuanceType
impl FromStr for IssuanceType
Source§type Err = ConversionError
type Err = ConversionError
The associated error which can be returned from parsing.
Source§fn from_str(value: &str) -> Result<IssuanceType, ConversionError>
fn from_str(value: &str) -> Result<IssuanceType, ConversionError>
Parses a string
s to return a value of this type. Read moreSource§impl PartialEq for IssuanceType
impl PartialEq for IssuanceType
Source§fn eq(&self, other: &IssuanceType) -> bool
fn eq(&self, other: &IssuanceType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for IssuanceType
impl Serialize for IssuanceType
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for IssuanceType
Auto Trait Implementations§
impl Freeze for IssuanceType
impl RefUnwindSafe for IssuanceType
impl Send for IssuanceType
impl Sync for IssuanceType
impl Unpin for IssuanceType
impl UnsafeUnpin for IssuanceType
impl UnwindSafe for IssuanceType
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