pub struct LoadWalletResponse {
pub name: String,
pub warnings: Option<Value>,
}Expand description
Response for the LoadWallet RPC method
Fields§
§name: StringThe wallet name if loaded successfully.
warnings: Option<Value>Warning messages, if any, related to loading the wallet.
Trait Implementations§
Source§impl Clone for LoadWalletResponse
impl Clone for LoadWalletResponse
Source§fn clone(&self) -> LoadWalletResponse
fn clone(&self) -> LoadWalletResponse
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 LoadWalletResponse
impl Debug for LoadWalletResponse
Source§impl<'de> Deserialize<'de> for LoadWalletResponse
impl<'de> Deserialize<'de> for LoadWalletResponse
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 LoadWalletResponse
impl PartialEq for LoadWalletResponse
Source§impl Serialize for LoadWalletResponse
impl Serialize for LoadWalletResponse
impl StructuralPartialEq for LoadWalletResponse
Auto Trait Implementations§
impl Freeze for LoadWalletResponse
impl RefUnwindSafe for LoadWalletResponse
impl Send for LoadWalletResponse
impl Sync for LoadWalletResponse
impl Unpin for LoadWalletResponse
impl UnwindSafe for LoadWalletResponse
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