pub struct RegAllocEmitStats {
pub bytes_emitted: usize,
pub items_emitted: usize,
pub errors: usize,
pub warnings: usize,
pub elapsed_ms: u64,
}Expand description
Emission statistics for RegAlloc.
Fields§
§bytes_emitted: usize§items_emitted: usize§errors: usize§warnings: usize§elapsed_ms: u64Implementations§
Trait Implementations§
Source§impl Clone for RegAllocEmitStats
impl Clone for RegAllocEmitStats
Source§fn clone(&self) -> RegAllocEmitStats
fn clone(&self) -> RegAllocEmitStats
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 RegAllocEmitStats
impl Debug for RegAllocEmitStats
Source§impl Default for RegAllocEmitStats
impl Default for RegAllocEmitStats
Source§fn default() -> RegAllocEmitStats
fn default() -> RegAllocEmitStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RegAllocEmitStats
impl RefUnwindSafe for RegAllocEmitStats
impl Send for RegAllocEmitStats
impl Sync for RegAllocEmitStats
impl Unpin for RegAllocEmitStats
impl UnsafeUnpin for RegAllocEmitStats
impl UnwindSafe for RegAllocEmitStats
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