pub enum AuthorizationKeyRole {
DelegatedActions,
Manager,
Root,
}Expand description
The role of an authorization key, controlling what actions it can authorize on a wallet.
JSON schema
{
"title": "AuthorizationKeyRole",
"description": "The role of an authorization key, controlling what
actions it can authorize on a wallet.",
"type": "string",
"enum": [
"delegated-actions",
"manager",
"root"
],
"x-stainless-model": "wallets.authorization_key_role"
}Variants§
Trait Implementations§
Source§impl Clone for AuthorizationKeyRole
impl Clone for AuthorizationKeyRole
Source§fn clone(&self) -> AuthorizationKeyRole
fn clone(&self) -> AuthorizationKeyRole
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 AuthorizationKeyRole
Source§impl Debug for AuthorizationKeyRole
impl Debug for AuthorizationKeyRole
Source§impl<'de> Deserialize<'de> for AuthorizationKeyRole
impl<'de> Deserialize<'de> for AuthorizationKeyRole
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 AuthorizationKeyRole
impl Display for AuthorizationKeyRole
impl Eq for AuthorizationKeyRole
Source§impl From<&AuthorizationKeyRole> for AuthorizationKeyRole
impl From<&AuthorizationKeyRole> for AuthorizationKeyRole
Source§fn from(value: &AuthorizationKeyRole) -> Self
fn from(value: &AuthorizationKeyRole) -> Self
Converts to this type from the input type.
Source§impl FromStr for AuthorizationKeyRole
impl FromStr for AuthorizationKeyRole
Source§impl Hash for AuthorizationKeyRole
impl Hash for AuthorizationKeyRole
Source§impl Ord for AuthorizationKeyRole
impl Ord for AuthorizationKeyRole
Source§fn cmp(&self, other: &AuthorizationKeyRole) -> Ordering
fn cmp(&self, other: &AuthorizationKeyRole) -> 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 AuthorizationKeyRole
impl PartialEq for AuthorizationKeyRole
Source§fn eq(&self, other: &AuthorizationKeyRole) -> bool
fn eq(&self, other: &AuthorizationKeyRole) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for AuthorizationKeyRole
impl PartialOrd for AuthorizationKeyRole
Source§impl Serialize for AuthorizationKeyRole
impl Serialize for AuthorizationKeyRole
impl StructuralPartialEq for AuthorizationKeyRole
Source§impl TryFrom<&String> for AuthorizationKeyRole
impl TryFrom<&String> for AuthorizationKeyRole
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for AuthorizationKeyRole
impl TryFrom<&str> for AuthorizationKeyRole
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for AuthorizationKeyRole
impl TryFrom<String> for AuthorizationKeyRole
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for AuthorizationKeyRole
impl RefUnwindSafe for AuthorizationKeyRole
impl Send for AuthorizationKeyRole
impl Sync for AuthorizationKeyRole
impl Unpin for AuthorizationKeyRole
impl UnsafeUnpin for AuthorizationKeyRole
impl UnwindSafe for AuthorizationKeyRole
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