pub struct PhiAllocationFacts<V> {
pub destination: V,
pub sources: Vec<PhiSource<V>>,
}Expand description
Register-allocation facts for one target-MIR phi node.
Fields§
§destination: V§sources: Vec<PhiSource<V>>Trait Implementations§
Source§impl<V: Clone> Clone for PhiAllocationFacts<V>
impl<V: Clone> Clone for PhiAllocationFacts<V>
Source§fn clone(&self) -> PhiAllocationFacts<V>
fn clone(&self) -> PhiAllocationFacts<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 moreSource§impl<V: Debug> Debug for PhiAllocationFacts<V>
impl<V: Debug> Debug for PhiAllocationFacts<V>
impl<V: Eq> Eq for PhiAllocationFacts<V>
Source§impl<V: PartialEq> PartialEq for PhiAllocationFacts<V>
impl<V: PartialEq> PartialEq for PhiAllocationFacts<V>
impl<V: PartialEq> StructuralPartialEq for PhiAllocationFacts<V>
Auto Trait Implementations§
impl<V> Freeze for PhiAllocationFacts<V>
impl<V> RefUnwindSafe for PhiAllocationFacts<V>
impl<V> Send for PhiAllocationFacts<V>
impl<V> Sync for PhiAllocationFacts<V>
impl<V> Unpin for PhiAllocationFacts<V>
impl<V> UnsafeUnpin for PhiAllocationFacts<V>
impl<V> UnwindSafe for PhiAllocationFacts<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