pub struct CreateWalletResponse {
pub name: String,
pub warnings: Option<Value>,
}Expand description
Response for the CreateWallet RPC method
Fields§
§name: StringThe wallet name if created successfully. If the wallet was created using a full path, the wallet_name will be the full path.
warnings: Option<Value>Warning messages, if any, related to creating and loading the wallet.
Trait Implementations§
Source§impl Clone for CreateWalletResponse
impl Clone for CreateWalletResponse
Source§fn clone(&self) -> CreateWalletResponse
fn clone(&self) -> CreateWalletResponse
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 CreateWalletResponse
impl Debug for CreateWalletResponse
Source§impl<'de> Deserialize<'de> for CreateWalletResponse
impl<'de> Deserialize<'de> for CreateWalletResponse
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 CreateWalletResponse
impl PartialEq for CreateWalletResponse
Source§impl Serialize for CreateWalletResponse
impl Serialize for CreateWalletResponse
impl StructuralPartialEq for CreateWalletResponse
Auto Trait Implementations§
impl Freeze for CreateWalletResponse
impl RefUnwindSafe for CreateWalletResponse
impl Send for CreateWalletResponse
impl Sync for CreateWalletResponse
impl Unpin for CreateWalletResponse
impl UnwindSafe for CreateWalletResponse
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