pub struct MasterKey {
pub key_data: [u8; 32],
pub chain_code: [u8; 32],
}Expand description
A master key.
Fields§
§key_data: [u8; 32]Key date bytes.
chain_code: [u8; 32]Chain code bytes.
Trait Implementations§
impl Eq for MasterKey
impl StructuralPartialEq for MasterKey
Auto Trait Implementations§
impl Freeze for MasterKey
impl RefUnwindSafe for MasterKey
impl Send for MasterKey
impl Sync for MasterKey
impl Unpin for MasterKey
impl UnwindSafe for MasterKey
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