pub struct McAssemblyReport {
pub section_count: usize,
pub symbol_count: usize,
pub reloc_count: usize,
pub bytes: usize,
}Expand description
Summary metrics for one assembly invocation.
Fields§
§section_count: usizePublic API for section_count.
symbol_count: usizePublic API for symbol_count.
reloc_count: usizePublic API for reloc_count.
bytes: usizePublic API for bytes.
Trait Implementations§
Source§impl Clone for McAssemblyReport
impl Clone for McAssemblyReport
Source§fn clone(&self) -> McAssemblyReport
fn clone(&self) -> McAssemblyReport
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 moreimpl Copy for McAssemblyReport
Source§impl Debug for McAssemblyReport
impl Debug for McAssemblyReport
Source§impl Default for McAssemblyReport
impl Default for McAssemblyReport
Source§fn default() -> McAssemblyReport
fn default() -> McAssemblyReport
Returns the “default value” for a type. Read more
impl Eq for McAssemblyReport
Source§impl PartialEq for McAssemblyReport
impl PartialEq for McAssemblyReport
impl StructuralPartialEq for McAssemblyReport
Auto Trait Implementations§
impl Freeze for McAssemblyReport
impl RefUnwindSafe for McAssemblyReport
impl Send for McAssemblyReport
impl Sync for McAssemblyReport
impl Unpin for McAssemblyReport
impl UnsafeUnpin for McAssemblyReport
impl UnwindSafe for McAssemblyReport
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