pub struct ValueLocRange {
pub loc: ValueLoc,
pub start: u32,
pub end: u32,
}Expand description
A range in which a value is valid.
Fields§
§loc: ValueLocWhere the value is.
start: u32Where it starts being there.
end: u32Where it stops being there.
Trait Implementations§
Source§impl Clone for ValueLocRange
impl Clone for ValueLocRange
Source§fn clone(&self) -> ValueLocRange
fn clone(&self) -> ValueLocRange
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 moreAuto Trait Implementations§
impl Freeze for ValueLocRange
impl RefUnwindSafe for ValueLocRange
impl Send for ValueLocRange
impl Sync for ValueLocRange
impl Unpin for ValueLocRange
impl UnwindSafe for ValueLocRange
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