pub enum IntentType {
KeyQuorum,
Policy,
Rpc,
Rule,
Transfer,
Wallet,
}Expand description
Type of intent.
JSON schema
{
"title": "IntentType",
"description": "Type of intent.",
"type": "string",
"enum": [
"KEY_QUORUM",
"POLICY",
"RPC",
"RULE",
"TRANSFER",
"WALLET"
],
"x-stainless-model": "intents.intent_type"
}Variants§
Trait Implementations§
Source§impl Clone for IntentType
impl Clone for IntentType
Source§fn clone(&self) -> IntentType
fn clone(&self) -> IntentType
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 IntentType
Source§impl Debug for IntentType
impl Debug for IntentType
Source§impl<'de> Deserialize<'de> for IntentType
impl<'de> Deserialize<'de> for IntentType
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 IntentType
impl Display for IntentType
impl Eq for IntentType
Source§impl From<&IntentType> for IntentType
impl From<&IntentType> for IntentType
Source§fn from(value: &IntentType) -> Self
fn from(value: &IntentType) -> Self
Converts to this type from the input type.
Source§impl FromStr for IntentType
impl FromStr for IntentType
Source§impl Hash for IntentType
impl Hash for IntentType
Source§impl Ord for IntentType
impl Ord for IntentType
Source§fn cmp(&self, other: &IntentType) -> Ordering
fn cmp(&self, other: &IntentType) -> 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 IntentType
impl PartialEq for IntentType
Source§fn eq(&self, other: &IntentType) -> bool
fn eq(&self, other: &IntentType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for IntentType
impl PartialOrd for IntentType
Source§impl Serialize for IntentType
impl Serialize for IntentType
impl StructuralPartialEq for IntentType
Source§impl TryFrom<&String> for IntentType
impl TryFrom<&String> for IntentType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for IntentType
impl TryFrom<&str> for IntentType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for IntentType
impl TryFrom<String> for IntentType
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for IntentType
impl RefUnwindSafe for IntentType
impl Send for IntentType
impl Sync for IntentType
impl Unpin for IntentType
impl UnsafeUnpin for IntentType
impl UnwindSafe for IntentType
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