#[repr(C)]pub struct RichRecord {
pub build: u16,
pub product: u16,
pub count: u32,
}Expand description
Rich record.
Rich records contain a product identifier and its build number. The count value indicates how many .obj files were linked generated by the product.
Fields§
§build: u16§product: u16§count: u32Implementations§
Trait Implementations§
Source§impl Clone for RichRecord
impl Clone for RichRecord
Source§fn clone(&self) -> RichRecord
fn clone(&self) -> RichRecord
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 RichRecord
impl Debug for RichRecord
Source§impl Default for RichRecord
impl Default for RichRecord
Source§fn default() -> RichRecord
fn default() -> RichRecord
Returns the “default value” for a type. Read more
Source§impl PartialEq for RichRecord
impl PartialEq for RichRecord
impl Copy for RichRecord
impl Eq for RichRecord
impl StructuralPartialEq for RichRecord
Auto Trait Implementations§
impl Freeze for RichRecord
impl RefUnwindSafe for RichRecord
impl Send for RichRecord
impl Sync for RichRecord
impl Unpin for RichRecord
impl UnwindSafe for RichRecord
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