pub struct LicmCodeStats {
pub loops_analyzed: usize,
pub invariant_exprs: usize,
pub hoisted: usize,
pub sunk: usize,
pub speculative: usize,
pub rejected: usize,
}Expand description
LICM code stats
Fields§
§loops_analyzed: usize§invariant_exprs: usize§hoisted: usize§sunk: usize§speculative: usize§rejected: usizeTrait Implementations§
Source§impl Clone for LicmCodeStats
impl Clone for LicmCodeStats
Source§fn clone(&self) -> LicmCodeStats
fn clone(&self) -> LicmCodeStats
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 LicmCodeStats
impl Debug for LicmCodeStats
Source§impl Default for LicmCodeStats
impl Default for LicmCodeStats
Source§fn default() -> LicmCodeStats
fn default() -> LicmCodeStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LicmCodeStats
impl RefUnwindSafe for LicmCodeStats
impl Send for LicmCodeStats
impl Sync for LicmCodeStats
impl Unpin for LicmCodeStats
impl UnsafeUnpin for LicmCodeStats
impl UnwindSafe for LicmCodeStats
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