pub enum SuiCommandName {
MergeCoins,
SplitCoins,
TransferObjects,
}Expand description
SUI transaction commands allowlist for raw_sign endpoint policy evaluation
JSON schema
{
"title": "SuiCommandName",
"description": "SUI transaction commands allowlist for raw_sign
endpoint policy evaluation",
"type": "string",
"enum": [
"MergeCoins",
"SplitCoins",
"TransferObjects"
],
"x-stainless-model": "wallets.sui_command_name"
}Variants§
Trait Implementations§
Source§impl Clone for SuiCommandName
impl Clone for SuiCommandName
Source§fn clone(&self) -> SuiCommandName
fn clone(&self) -> SuiCommandName
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 SuiCommandName
Source§impl Debug for SuiCommandName
impl Debug for SuiCommandName
Source§impl<'de> Deserialize<'de> for SuiCommandName
impl<'de> Deserialize<'de> for SuiCommandName
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 SuiCommandName
impl Display for SuiCommandName
impl Eq for SuiCommandName
Source§impl From<&SuiCommandName> for SuiCommandName
impl From<&SuiCommandName> for SuiCommandName
Source§fn from(value: &SuiCommandName) -> Self
fn from(value: &SuiCommandName) -> Self
Converts to this type from the input type.
Source§impl From<SuiCommandName> for SuiTransactionCommandConditionValue
impl From<SuiCommandName> for SuiTransactionCommandConditionValue
Source§fn from(value: SuiCommandName) -> Self
fn from(value: SuiCommandName) -> Self
Converts to this type from the input type.
Source§impl FromStr for SuiCommandName
impl FromStr for SuiCommandName
Source§impl Hash for SuiCommandName
impl Hash for SuiCommandName
Source§impl Ord for SuiCommandName
impl Ord for SuiCommandName
Source§fn cmp(&self, other: &SuiCommandName) -> Ordering
fn cmp(&self, other: &SuiCommandName) -> 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 SuiCommandName
impl PartialEq for SuiCommandName
Source§fn eq(&self, other: &SuiCommandName) -> bool
fn eq(&self, other: &SuiCommandName) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for SuiCommandName
impl PartialOrd for SuiCommandName
Source§impl Serialize for SuiCommandName
impl Serialize for SuiCommandName
impl StructuralPartialEq for SuiCommandName
Source§impl TryFrom<&String> for SuiCommandName
impl TryFrom<&String> for SuiCommandName
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for SuiCommandName
impl TryFrom<&str> for SuiCommandName
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for SuiCommandName
impl TryFrom<String> for SuiCommandName
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for SuiCommandName
impl RefUnwindSafe for SuiCommandName
impl Send for SuiCommandName
impl Sync for SuiCommandName
impl Unpin for SuiCommandName
impl UnsafeUnpin for SuiCommandName
impl UnwindSafe for SuiCommandName
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