pub trait ElectrumExtendedKey {
    fn to_descriptors(&self) -> Vec<String>
Notable traits for Vec<u8, A>
impl<A> Write for Vec<u8, A> where
    A: Allocator
;
fn xkey_str(&self) -> String;
fn kind(&self) -> &str; }

Required methods

Returns internal and external descriptor

Returns the bitcoin extended key (xpub or xprv) as String

Returns the kind of script

Implementors