pub struct ExportSeedPhraseRpcResponse {
pub data: SeedPhraseExportResponse,
pub method: ExportSeedPhraseRpcResponseMethod,
}Expand description
Response to the exportSeedPhrase RPC.
JSON schema
{
"title": "ExportSeedPhraseRpcResponse",
"description": "Response to the `exportSeedPhrase` RPC.",
"type": "object",
"required": [
"data",
"method"
],
"properties": {
"data": {
"$ref": "#/components/schemas/SeedPhraseExportResponse"
},
"method": {
"type": "string",
"enum": [
"exportSeedPhrase"
]
}
},
"x-stainless-model": "wallets.export_seed_phrase_rpc_response"
}Fields§
§data: SeedPhraseExportResponse§method: ExportSeedPhraseRpcResponseMethodTrait Implementations§
Source§impl Clone for ExportSeedPhraseRpcResponse
impl Clone for ExportSeedPhraseRpcResponse
Source§fn clone(&self) -> ExportSeedPhraseRpcResponse
fn clone(&self) -> ExportSeedPhraseRpcResponse
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 ExportSeedPhraseRpcResponse
impl Debug for ExportSeedPhraseRpcResponse
Source§impl<'de> Deserialize<'de> for ExportSeedPhraseRpcResponse
impl<'de> Deserialize<'de> for ExportSeedPhraseRpcResponse
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<&ExportSeedPhraseRpcResponse> for ExportSeedPhraseRpcResponse
impl From<&ExportSeedPhraseRpcResponse> for ExportSeedPhraseRpcResponse
Source§fn from(value: &ExportSeedPhraseRpcResponse) -> Self
fn from(value: &ExportSeedPhraseRpcResponse) -> Self
Converts to this type from the input type.
Source§impl From<ExportSeedPhraseRpcResponse> for WalletRpcResponse
impl From<ExportSeedPhraseRpcResponse> for WalletRpcResponse
Source§fn from(value: ExportSeedPhraseRpcResponse) -> Self
fn from(value: ExportSeedPhraseRpcResponse) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ExportSeedPhraseRpcResponse
impl RefUnwindSafe for ExportSeedPhraseRpcResponse
impl Send for ExportSeedPhraseRpcResponse
impl Sync for ExportSeedPhraseRpcResponse
impl Unpin for ExportSeedPhraseRpcResponse
impl UnsafeUnpin for ExportSeedPhraseRpcResponse
impl UnwindSafe for ExportSeedPhraseRpcResponse
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