pub struct AliasCodeStats {
pub functions_analyzed: usize,
pub constraints_solved: usize,
pub must_aliases_found: usize,
pub no_aliases_found: usize,
pub escape_candidates: usize,
pub stack_promotions: usize,
}Expand description
Alias analysis code stats
Fields§
§functions_analyzed: usize§constraints_solved: usize§must_aliases_found: usize§no_aliases_found: usize§escape_candidates: usize§stack_promotions: usizeTrait Implementations§
Source§impl Clone for AliasCodeStats
impl Clone for AliasCodeStats
Source§fn clone(&self) -> AliasCodeStats
fn clone(&self) -> AliasCodeStats
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 AliasCodeStats
impl Debug for AliasCodeStats
Source§impl Default for AliasCodeStats
impl Default for AliasCodeStats
Source§fn default() -> AliasCodeStats
fn default() -> AliasCodeStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AliasCodeStats
impl RefUnwindSafe for AliasCodeStats
impl Send for AliasCodeStats
impl Sync for AliasCodeStats
impl Unpin for AliasCodeStats
impl UnsafeUnpin for AliasCodeStats
impl UnwindSafe for AliasCodeStats
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