pub struct UserSigningKeyBinding(pub IntentBinding);Expand description
A binding that scopes a user signing key to a specific bound value.
JSON schema
{
"title": "UserSigningKeyBinding",
"description": "A binding that scopes a user signing key to a specific
bound value.",
"oneOf": [
{
"$ref": "#/components/schemas/IntentBinding"
}
],
"x-stainless-model": "wallets.user_signing_key_binding"
}Tuple Fields§
§0: IntentBindingTrait Implementations§
Source§impl Clone for UserSigningKeyBinding
impl Clone for UserSigningKeyBinding
Source§fn clone(&self) -> UserSigningKeyBinding
fn clone(&self) -> UserSigningKeyBinding
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 moreSource§impl Debug for UserSigningKeyBinding
impl Debug for UserSigningKeyBinding
Source§impl Deref for UserSigningKeyBinding
impl Deref for UserSigningKeyBinding
Source§type Target = IntentBinding
type Target = IntentBinding
The resulting type after dereferencing.
Source§fn deref(&self) -> &IntentBinding
fn deref(&self) -> &IntentBinding
Dereferences the value.
Source§impl<'de> Deserialize<'de> for UserSigningKeyBinding
impl<'de> Deserialize<'de> for UserSigningKeyBinding
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 From<&UserSigningKeyBinding> for UserSigningKeyBinding
impl From<&UserSigningKeyBinding> for UserSigningKeyBinding
Source§fn from(value: &UserSigningKeyBinding) -> Self
fn from(value: &UserSigningKeyBinding) -> Self
Converts to this type from the input type.
Source§impl From<IntentBinding> for UserSigningKeyBinding
impl From<IntentBinding> for UserSigningKeyBinding
Source§fn from(value: IntentBinding) -> Self
fn from(value: IntentBinding) -> Self
Converts to this type from the input type.
Source§impl From<UserSigningKeyBinding> for IntentBinding
impl From<UserSigningKeyBinding> for IntentBinding
Source§fn from(value: UserSigningKeyBinding) -> Self
fn from(value: UserSigningKeyBinding) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for UserSigningKeyBinding
impl RefUnwindSafe for UserSigningKeyBinding
impl Send for UserSigningKeyBinding
impl Sync for UserSigningKeyBinding
impl Unpin for UserSigningKeyBinding
impl UnsafeUnpin for UserSigningKeyBinding
impl UnwindSafe for UserSigningKeyBinding
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