pub struct RichHeader {
pub entries: Vec<RichEntry>,
pub xor_key: u32,
}Expand description
Decoded Rich header — compiler fingerprint from the DOS stub area.
Fields§
§entries: Vec<RichEntry>Decoded tool-version entries in the order they appear.
xor_key: u32XOR key used to encode the header (also a rudimentary checksum).
Trait Implementations§
Source§impl Clone for RichHeader
impl Clone for RichHeader
Source§fn clone(&self) -> RichHeader
fn clone(&self) -> RichHeader
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RichHeader
impl Debug for RichHeader
Auto Trait Implementations§
impl Freeze for RichHeader
impl RefUnwindSafe for RichHeader
impl Send for RichHeader
impl Sync for RichHeader
impl Unpin for RichHeader
impl UnsafeUnpin for RichHeader
impl UnwindSafe for RichHeader
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