pub struct WalletOptions {
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
Options for creating or loading a Bitcoin Core wallet
Fields§
§disable_private_keys: bool§blank: bool§passphrase: String§avoid_reuse: bool§descriptors: bool§load_on_startup: bool§external_signer: boolImplementations§
Source§impl WalletOptions
impl WalletOptions
pub fn with_descriptors(self) -> Self
Trait Implementations§
Source§impl Clone for WalletOptions
impl Clone for WalletOptions
Source§fn clone(&self) -> WalletOptions
fn clone(&self) -> WalletOptions
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 WalletOptions
impl Debug for WalletOptions
Auto Trait Implementations§
impl Freeze for WalletOptions
impl RefUnwindSafe for WalletOptions
impl Send for WalletOptions
impl Sync for WalletOptions
impl Unpin for WalletOptions
impl UnwindSafe for WalletOptions
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