pub struct Keystore {
pub type: String,
pub xprv: Option<String>,
pub xpub: String,
}Expand description
Representation of a keystore section of an electrum wallet file. Can be single sig “keystore” or multisig “x1/” “x2/” …
Fields§
§type: String§xprv: Option<String>§xpub: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Keystore
impl<'de> Deserialize<'de> for Keystore
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
impl Eq for Keystore
impl StructuralPartialEq for Keystore
Auto Trait Implementations§
impl Freeze for Keystore
impl RefUnwindSafe for Keystore
impl Send for Keystore
impl Sync for Keystore
impl Unpin for Keystore
impl UnwindSafe for Keystore
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