pub struct NextUseAnalysis<V> {
pub entry_distances: Vec<NextUseDistances<V>>,
pub exit_distances: Vec<NextUseDistances<V>>,
pub predecessors: Vec<Vec<usize>>,
pub backedge_successors: Vec<Vec<usize>>,
}Fields§
§entry_distances: Vec<NextUseDistances<V>>§exit_distances: Vec<NextUseDistances<V>>§predecessors: Vec<Vec<usize>>§backedge_successors: Vec<Vec<usize>>Trait Implementations§
Source§impl<V: Clone> Clone for NextUseAnalysis<V>
impl<V: Clone> Clone for NextUseAnalysis<V>
Source§fn clone(&self) -> NextUseAnalysis<V>
fn clone(&self) -> NextUseAnalysis<V>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<V> Freeze for NextUseAnalysis<V>
impl<V> RefUnwindSafe for NextUseAnalysis<V>
impl<V> Send for NextUseAnalysis<V>
impl<V> Sync for NextUseAnalysis<V>
impl<V> Unpin for NextUseAnalysis<V>
impl<V> UnsafeUnpin for NextUseAnalysis<V>
impl<V> UnwindSafe for NextUseAnalysis<V>
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