pub struct CreateWalletArguments {
pub name: String,
pub load_on_startup: Option<bool>,
}
Expand description
Models the createwallet
JSON-RPC method.
§Note
This can also be used for the loadwallet
JSON-RPC method.
Fields§
§name: String
Wallet name
load_on_startup: Option<bool>
Load on startup
Trait Implementations§
Source§impl Clone for CreateWalletArguments
impl Clone for CreateWalletArguments
Source§fn clone(&self) -> CreateWalletArguments
fn clone(&self) -> CreateWalletArguments
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 CreateWalletArguments
impl Debug for CreateWalletArguments
Source§impl<'de> Deserialize<'de> for CreateWalletArguments
impl<'de> Deserialize<'de> for CreateWalletArguments
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 CreateWalletArguments
impl PartialEq for CreateWalletArguments
Source§impl Serialize for CreateWalletArguments
impl Serialize for CreateWalletArguments
impl StructuralPartialEq for CreateWalletArguments
Auto Trait Implementations§
impl Freeze for CreateWalletArguments
impl RefUnwindSafe for CreateWalletArguments
impl Send for CreateWalletArguments
impl Sync for CreateWalletArguments
impl Unpin for CreateWalletArguments
impl UnwindSafe for CreateWalletArguments
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