pub struct RecoveryKeyMaterialInput {
pub chain_type: Option<String>,
}Expand description
The input for getting the recovery key material.
JSON schema
{
"title": "RecoveryKeyMaterialInput",
"description": "The input for getting the recovery key material.",
"type": "object",
"properties": {
"chain_type": {
"type": "string"
}
},
"x-stainless-model": "embedded_wallets.recovery_key_material_input"
}Fields§
§chain_type: Option<String>Trait Implementations§
Source§impl Clone for RecoveryKeyMaterialInput
impl Clone for RecoveryKeyMaterialInput
Source§fn clone(&self) -> RecoveryKeyMaterialInput
fn clone(&self) -> RecoveryKeyMaterialInput
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 RecoveryKeyMaterialInput
impl Debug for RecoveryKeyMaterialInput
Source§impl Default for RecoveryKeyMaterialInput
impl Default for RecoveryKeyMaterialInput
Source§impl<'de> Deserialize<'de> for RecoveryKeyMaterialInput
impl<'de> Deserialize<'de> for RecoveryKeyMaterialInput
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<&RecoveryKeyMaterialInput> for RecoveryKeyMaterialInput
impl From<&RecoveryKeyMaterialInput> for RecoveryKeyMaterialInput
Source§fn from(value: &RecoveryKeyMaterialInput) -> Self
fn from(value: &RecoveryKeyMaterialInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RecoveryKeyMaterialInput
impl RefUnwindSafe for RecoveryKeyMaterialInput
impl Send for RecoveryKeyMaterialInput
impl Sync for RecoveryKeyMaterialInput
impl Unpin for RecoveryKeyMaterialInput
impl UnsafeUnpin for RecoveryKeyMaterialInput
impl UnwindSafe for RecoveryKeyMaterialInput
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