Struct cranelift_codegen::ir::ValueLabelStart
source · [−]pub struct ValueLabelStart {
pub from: RelSourceLoc,
pub label: ValueLabel,
}
Expand description
A label of a Value.
Fields
from: RelSourceLoc
Source location when it is in effect
label: ValueLabel
The label index.
Trait Implementations
sourceimpl Clone for ValueLabelStart
impl Clone for ValueLabelStart
sourcefn clone(&self) -> ValueLabelStart
fn clone(&self) -> ValueLabelStart
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ValueLabelStart
impl Debug for ValueLabelStart
sourceimpl Hash for ValueLabelStart
impl Hash for ValueLabelStart
sourceimpl PartialEq<ValueLabelStart> for ValueLabelStart
impl PartialEq<ValueLabelStart> for ValueLabelStart
sourcefn eq(&self, other: &ValueLabelStart) -> bool
fn eq(&self, other: &ValueLabelStart) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ValueLabelStart) -> bool
fn ne(&self, other: &ValueLabelStart) -> bool
This method tests for !=
.
impl StructuralPartialEq for ValueLabelStart
Auto Trait Implementations
impl RefUnwindSafe for ValueLabelStart
impl Send for ValueLabelStart
impl Sync for ValueLabelStart
impl Unpin for ValueLabelStart
impl UnwindSafe for ValueLabelStart
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more