pub struct AliasStatsExt {
pub queries_total: usize,
pub must_alias_count: usize,
pub no_alias_count: usize,
pub may_alias_count: usize,
pub partial_alias_count: usize,
pub constraints_generated: usize,
pub constraint_solving_iters: usize,
pub points_to_sets_computed: usize,
}Expand description
Alias analysis statistics (extended)
Fields§
§queries_total: usize§must_alias_count: usize§no_alias_count: usize§may_alias_count: usize§partial_alias_count: usize§constraints_generated: usize§constraint_solving_iters: usize§points_to_sets_computed: usizeTrait Implementations§
Source§impl Clone for AliasStatsExt
impl Clone for AliasStatsExt
Source§fn clone(&self) -> AliasStatsExt
fn clone(&self) -> AliasStatsExt
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 AliasStatsExt
impl Debug for AliasStatsExt
Source§impl Default for AliasStatsExt
impl Default for AliasStatsExt
Source§fn default() -> AliasStatsExt
fn default() -> AliasStatsExt
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for AliasStatsExt
impl RefUnwindSafe for AliasStatsExt
impl Send for AliasStatsExt
impl Sync for AliasStatsExt
impl Unpin for AliasStatsExt
impl UnsafeUnpin for AliasStatsExt
impl UnwindSafe for AliasStatsExt
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