pub struct PhiSource<V> {
pub predecessor: usize,
pub value: V,
}Expand description
One source of a target-MIR phi node, identified by normalized predecessor block index rather than a backend-specific block identifier.
Fields§
§predecessor: usize§value: VTrait Implementations§
impl<V: Copy> Copy for PhiSource<V>
impl<V: Eq> Eq for PhiSource<V>
impl<V: PartialEq> StructuralPartialEq for PhiSource<V>
Auto Trait Implementations§
impl<V> Freeze for PhiSource<V>where
V: Freeze,
impl<V> RefUnwindSafe for PhiSource<V>where
V: RefUnwindSafe,
impl<V> Send for PhiSource<V>where
V: Send,
impl<V> Sync for PhiSource<V>where
V: Sync,
impl<V> Unpin for PhiSource<V>where
V: Unpin,
impl<V> UnsafeUnpin for PhiSource<V>where
V: UnsafeUnpin,
impl<V> UnwindSafe for PhiSource<V>where
V: UnwindSafe,
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