pub struct BIP44Path(pub [u32; 5]);
Tuple Fields§
§0: [u32; 5]
Implementations§
Source§impl BIP44Path
impl BIP44Path
Bip44Path
Implementation of the BIP44 standard for derivation path.
pub fn from_slice(path: &[u32]) -> Result<BIP44Path, BIP44PathError>
pub fn from_string(path: &str) -> Result<BIP44Path, BIP44PathError>
pub fn serialize(&self) -> Vec<u8>
pub fn is_testnet(&self) -> bool
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BIP44Path
impl RefUnwindSafe for BIP44Path
impl Send for BIP44Path
impl Sync for BIP44Path
impl Unpin for BIP44Path
impl UnwindSafe for BIP44Path
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