pub struct Header {
pub format_version: u16,
pub rom_hash_tag: [u8; 6],
}Expand description
Header decoded from the start of the blob.
Fields§
§format_version: u16Container format version (matches FORMAT_VERSION when written by
this build).
rom_hash_tag: [u8; 6]Truncated ROM SHA-256 sanity tag.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Header
impl RefUnwindSafe for Header
impl Send for Header
impl Sync for Header
impl Unpin for Header
impl UnsafeUnpin for Header
impl UnwindSafe for Header
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