pub struct CreatewalletParams {
pub wallet_name: String,
pub disable_private_keys: bool,
pub blank: bool,
pub passphrase: String,
pub avoid_reuse: bool,
pub descriptors: bool,
pub load_on_startup: bool,
pub external_signer: bool,
}Expand description
Creates and loads a new wallet.
Fields§
§wallet_name: String§disable_private_keys: bool§blank: bool§passphrase: String§avoid_reuse: bool§descriptors: bool§load_on_startup: bool§external_signer: boolTrait Implementations§
Source§impl Debug for CreatewalletParams
impl Debug for CreatewalletParams
Auto Trait Implementations§
impl Freeze for CreatewalletParams
impl RefUnwindSafe for CreatewalletParams
impl Send for CreatewalletParams
impl Sync for CreatewalletParams
impl Unpin for CreatewalletParams
impl UnsafeUnpin for CreatewalletParams
impl UnwindSafe for CreatewalletParams
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