pub enum SuiTransactionCommandConditionField {
CommandName,
}Expand description
SuiTransactionCommandConditionField
JSON schema
{
"title": "SuiTransactionCommandConditionField",
"type": "string",
"enum": [
"commandName"
]
}Variants§
CommandName
Trait Implementations§
Source§impl Clone for SuiTransactionCommandConditionField
impl Clone for SuiTransactionCommandConditionField
Source§fn clone(&self) -> SuiTransactionCommandConditionField
fn clone(&self) -> SuiTransactionCommandConditionField
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 SuiTransactionCommandConditionField
Source§impl<'de> Deserialize<'de> for SuiTransactionCommandConditionField
impl<'de> Deserialize<'de> for SuiTransactionCommandConditionField
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
impl Eq for SuiTransactionCommandConditionField
Source§impl From<&SuiTransactionCommandConditionField> for SuiTransactionCommandConditionField
impl From<&SuiTransactionCommandConditionField> for SuiTransactionCommandConditionField
Source§fn from(value: &SuiTransactionCommandConditionField) -> Self
fn from(value: &SuiTransactionCommandConditionField) -> Self
Converts to this type from the input type.
Source§impl Ord for SuiTransactionCommandConditionField
impl Ord for SuiTransactionCommandConditionField
Source§fn cmp(&self, other: &SuiTransactionCommandConditionField) -> Ordering
fn cmp(&self, other: &SuiTransactionCommandConditionField) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SuiTransactionCommandConditionField
impl PartialEq for SuiTransactionCommandConditionField
Source§fn eq(&self, other: &SuiTransactionCommandConditionField) -> bool
fn eq(&self, other: &SuiTransactionCommandConditionField) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SuiTransactionCommandConditionField
impl PartialOrd for SuiTransactionCommandConditionField
impl StructuralPartialEq for SuiTransactionCommandConditionField
Source§impl TryFrom<&String> for SuiTransactionCommandConditionField
impl TryFrom<&String> for SuiTransactionCommandConditionField
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for SuiTransactionCommandConditionField
impl TryFrom<&str> for SuiTransactionCommandConditionField
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for SuiTransactionCommandConditionField
impl TryFrom<String> for SuiTransactionCommandConditionField
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for SuiTransactionCommandConditionField
impl RefUnwindSafe for SuiTransactionCommandConditionField
impl Send for SuiTransactionCommandConditionField
impl Sync for SuiTransactionCommandConditionField
impl Unpin for SuiTransactionCommandConditionField
impl UnsafeUnpin for SuiTransactionCommandConditionField
impl UnwindSafe for SuiTransactionCommandConditionField
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