pub enum SuiTransactionCommandOperator {
Eq,
In,
}Expand description
Operator to use for SUI transaction command conditions. Only ‘eq’ and ‘in’ are supported for command names.
JSON schema
{
"title": "SuiTransactionCommandOperator",
"description": "Operator to use for SUI transaction command conditions.
Only 'eq' and 'in' are supported for command names.",
"oneOf": [
{
"type": "string",
"enum": [
"eq"
]
},
{
"type": "string",
"enum": [
"in"
]
}
],
"x-stainless-model": "policies.sui_transaction_command_operator"
}Variants§
Trait Implementations§
Source§impl Clone for SuiTransactionCommandOperator
impl Clone for SuiTransactionCommandOperator
Source§fn clone(&self) -> SuiTransactionCommandOperator
fn clone(&self) -> SuiTransactionCommandOperator
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 SuiTransactionCommandOperator
Source§impl<'de> Deserialize<'de> for SuiTransactionCommandOperator
impl<'de> Deserialize<'de> for SuiTransactionCommandOperator
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 SuiTransactionCommandOperator
Source§impl From<&SuiTransactionCommandOperator> for SuiTransactionCommandOperator
impl From<&SuiTransactionCommandOperator> for SuiTransactionCommandOperator
Source§fn from(value: &SuiTransactionCommandOperator) -> Self
fn from(value: &SuiTransactionCommandOperator) -> Self
Converts to this type from the input type.
Source§impl Hash for SuiTransactionCommandOperator
impl Hash for SuiTransactionCommandOperator
Source§impl Ord for SuiTransactionCommandOperator
impl Ord for SuiTransactionCommandOperator
Source§fn cmp(&self, other: &SuiTransactionCommandOperator) -> Ordering
fn cmp(&self, other: &SuiTransactionCommandOperator) -> 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 SuiTransactionCommandOperator
impl PartialEq for SuiTransactionCommandOperator
Source§fn eq(&self, other: &SuiTransactionCommandOperator) -> bool
fn eq(&self, other: &SuiTransactionCommandOperator) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SuiTransactionCommandOperator
impl PartialOrd for SuiTransactionCommandOperator
impl StructuralPartialEq for SuiTransactionCommandOperator
Source§impl TryFrom<&String> for SuiTransactionCommandOperator
impl TryFrom<&String> for SuiTransactionCommandOperator
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for SuiTransactionCommandOperator
impl TryFrom<&str> for SuiTransactionCommandOperator
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for SuiTransactionCommandOperator
impl TryFrom<String> for SuiTransactionCommandOperator
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for SuiTransactionCommandOperator
impl RefUnwindSafe for SuiTransactionCommandOperator
impl Send for SuiTransactionCommandOperator
impl Sync for SuiTransactionCommandOperator
impl Unpin for SuiTransactionCommandOperator
impl UnsafeUnpin for SuiTransactionCommandOperator
impl UnwindSafe for SuiTransactionCommandOperator
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