pub struct MasterKeys {
pub hmac_key: [u8; 16],
pub type_string: [u8; 14],
pub magic_bytes_size: u8,
pub magic_bytes: [u8; 16],
pub xor_pad: [u8; 32],
}Expand description
The Master Keys for amiibo.
Fields§
§hmac_key: [u8; 16]§type_string: [u8; 14]§magic_bytes_size: u8§magic_bytes: [u8; 16]§xor_pad: [u8; 32]Implementations§
Source§impl MasterKeys
impl MasterKeys
Trait Implementations§
Source§impl Clone for MasterKeys
impl Clone for MasterKeys
Source§fn clone(&self) -> MasterKeys
fn clone(&self) -> MasterKeys
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 MasterKeys
impl Debug for MasterKeys
impl Copy for MasterKeys
Auto Trait Implementations§
impl Freeze for MasterKeys
impl RefUnwindSafe for MasterKeys
impl Send for MasterKeys
impl Sync for MasterKeys
impl Unpin for MasterKeys
impl UnwindSafe for MasterKeys
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