pub struct ReuseCodeStats {
pub allocs_analyzed: usize,
pub reuses: usize,
pub stack_allocs: usize,
pub inlines: usize,
pub scratch_uses: usize,
pub bytes_saved: u64,
}Expand description
Reuse analysis code stats
Fields§
§allocs_analyzed: usize§reuses: usize§stack_allocs: usize§inlines: usize§scratch_uses: usize§bytes_saved: u64Trait Implementations§
Source§impl Clone for ReuseCodeStats
impl Clone for ReuseCodeStats
Source§fn clone(&self) -> ReuseCodeStats
fn clone(&self) -> ReuseCodeStats
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 ReuseCodeStats
impl Debug for ReuseCodeStats
Source§impl Default for ReuseCodeStats
impl Default for ReuseCodeStats
Source§fn default() -> ReuseCodeStats
fn default() -> ReuseCodeStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ReuseCodeStats
impl RefUnwindSafe for ReuseCodeStats
impl Send for ReuseCodeStats
impl Sync for ReuseCodeStats
impl Unpin for ReuseCodeStats
impl UnsafeUnpin for ReuseCodeStats
impl UnwindSafe for ReuseCodeStats
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