pub struct LicmPassSummary {
pub pass_name: String,
pub functions_processed: usize,
pub hoisted: usize,
pub sunk: usize,
pub duration_us: u64,
}Expand description
LICM pass summary
Fields§
§pass_name: String§functions_processed: usize§hoisted: usize§sunk: usize§duration_us: u64Trait Implementations§
Source§impl Clone for LicmPassSummary
impl Clone for LicmPassSummary
Source§fn clone(&self) -> LicmPassSummary
fn clone(&self) -> LicmPassSummary
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 LicmPassSummary
impl Debug for LicmPassSummary
Source§impl Default for LicmPassSummary
impl Default for LicmPassSummary
Source§fn default() -> LicmPassSummary
fn default() -> LicmPassSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LicmPassSummary
impl RefUnwindSafe for LicmPassSummary
impl Send for LicmPassSummary
impl Sync for LicmPassSummary
impl Unpin for LicmPassSummary
impl UnsafeUnpin for LicmPassSummary
impl UnwindSafe for LicmPassSummary
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