pub struct LiveRange<V> {
pub value: V,
pub start: u32,
pub end: u32,
}Expand description
One inclusive live range in a linearized machine function.
Fields§
§value: V§start: u32§end: u32Trait Implementations§
impl<V: Copy> Copy for LiveRange<V>
impl<V: Eq> Eq for LiveRange<V>
impl<V: PartialEq> StructuralPartialEq for LiveRange<V>
Auto Trait Implementations§
impl<V> Freeze for LiveRange<V>where
V: Freeze,
impl<V> RefUnwindSafe for LiveRange<V>where
V: RefUnwindSafe,
impl<V> Send for LiveRange<V>where
V: Send,
impl<V> Sync for LiveRange<V>where
V: Sync,
impl<V> Unpin for LiveRange<V>where
V: Unpin,
impl<V> UnsafeUnpin for LiveRange<V>where
V: UnsafeUnpin,
impl<V> UnwindSafe for LiveRange<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