pub struct RichEntry {
pub product_id: u16,
pub build_id: u16,
pub use_count: u32,
}Expand description
One entry in the Rich header: a specific compiler/linker tool version.
Fields§
§product_id: u16Compiler / linker product identifier (high 16 bits of comp_id).
build_id: u16Build number (low 16 bits of comp_id).
use_count: u32Number of object files compiled with this exact tool version.
Trait Implementations§
impl Eq for RichEntry
impl StructuralPartialEq for RichEntry
Auto Trait Implementations§
impl Freeze for RichEntry
impl RefUnwindSafe for RichEntry
impl Send for RichEntry
impl Sync for RichEntry
impl Unpin for RichEntry
impl UnsafeUnpin for RichEntry
impl UnwindSafe for RichEntry
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