pub struct RestoreWalletResponse {
pub name: String,
pub warnings: Option<Value>,
}Expand description
Response for the RestoreWallet RPC method
Fields§
§name: StringThe wallet name if restored successfully.
warnings: Option<Value>Warning messages, if any, related to restoring and loading the wallet.
Trait Implementations§
Source§impl Clone for RestoreWalletResponse
impl Clone for RestoreWalletResponse
Source§fn clone(&self) -> RestoreWalletResponse
fn clone(&self) -> RestoreWalletResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 RestoreWalletResponse
impl Debug for RestoreWalletResponse
Source§impl<'de> Deserialize<'de> for RestoreWalletResponse
impl<'de> Deserialize<'de> for RestoreWalletResponse
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 PartialEq for RestoreWalletResponse
impl PartialEq for RestoreWalletResponse
Source§impl Serialize for RestoreWalletResponse
impl Serialize for RestoreWalletResponse
impl StructuralPartialEq for RestoreWalletResponse
Auto Trait Implementations§
impl Freeze for RestoreWalletResponse
impl RefUnwindSafe for RestoreWalletResponse
impl Send for RestoreWalletResponse
impl Sync for RestoreWalletResponse
impl Unpin for RestoreWalletResponse
impl UnwindSafe for RestoreWalletResponse
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