pub struct ExportSeedPhraseRpcInput {
pub address: String,
pub method: ExportSeedPhraseRpcInputMethod,
pub params: SeedPhraseExportInput,
}Expand description
Exports the seed phrase of the wallet.
JSON schema
{
"title": "ExportSeedPhraseRpcInput",
"description": "Exports the seed phrase of the wallet.",
"type": "object",
"required": [
"address",
"method",
"params"
],
"properties": {
"address": {
"type": "string"
},
"method": {
"type": "string",
"enum": [
"exportSeedPhrase"
]
},
"params": {
"$ref": "#/components/schemas/SeedPhraseExportInput"
}
},
"x-stainless-model": "wallets.export_seed_phrase_rpc_input"
}Fields§
§address: String§method: ExportSeedPhraseRpcInputMethod§params: SeedPhraseExportInputTrait Implementations§
Source§impl Clone for ExportSeedPhraseRpcInput
impl Clone for ExportSeedPhraseRpcInput
Source§fn clone(&self) -> ExportSeedPhraseRpcInput
fn clone(&self) -> ExportSeedPhraseRpcInput
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 ExportSeedPhraseRpcInput
impl Debug for ExportSeedPhraseRpcInput
Source§impl<'de> Deserialize<'de> for ExportSeedPhraseRpcInput
impl<'de> Deserialize<'de> for ExportSeedPhraseRpcInput
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<&ExportSeedPhraseRpcInput> for ExportSeedPhraseRpcInput
impl From<&ExportSeedPhraseRpcInput> for ExportSeedPhraseRpcInput
Source§fn from(value: &ExportSeedPhraseRpcInput) -> Self
fn from(value: &ExportSeedPhraseRpcInput) -> Self
Converts to this type from the input type.
Source§impl From<ExportSeedPhraseRpcInput> for WalletRpcRequestBody
impl From<ExportSeedPhraseRpcInput> for WalletRpcRequestBody
Source§fn from(value: ExportSeedPhraseRpcInput) -> Self
fn from(value: ExportSeedPhraseRpcInput) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ExportSeedPhraseRpcInput
impl RefUnwindSafe for ExportSeedPhraseRpcInput
impl Send for ExportSeedPhraseRpcInput
impl Sync for ExportSeedPhraseRpcInput
impl Unpin for ExportSeedPhraseRpcInput
impl UnsafeUnpin for ExportSeedPhraseRpcInput
impl UnwindSafe for ExportSeedPhraseRpcInput
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