Struct cranelift_isle::sema::Variant
source · [−]Expand description
A variant of an enum.
Fields
name: Sym
The name of this variant.
fullname: Sym
The full, prefixed-with-the-enum’s-name name of this variant.
E.g. if the enum is Foo
and this variant is Bar
, then the
fullname
is Foo.Bar
.
id: VariantId
The id of this variant, i.e. the index of this variant within its
enum’s Type::Enum::variants
.
fields: Vec<Field>
The data fields of this enum variant.
Trait Implementations
impl Eq for Variant
impl StructuralEq for Variant
impl StructuralPartialEq for Variant
Auto Trait Implementations
impl RefUnwindSafe for Variant
impl Send for Variant
impl Sync for Variant
impl Unpin for Variant
impl UnwindSafe for Variant
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