[−][src]Struct cranelift_codegen_meta::cdsl::typevar::TypeVarContent
Type variables can be used in place of concrete types when defining instructions. This makes the instructions polymorphic.
A type variable is restricted to vary over a subset of the value types. This subset is specified by a set of flags that control the permitted base types and whether the type variable can assume scalar or vector types, or both.
Fields
name: StringShort name of type variable used in instruction descriptions.
doc: StringDocumentation string.
type_set: TypeSetType set associated to the type variable.
This field must remain private; use get_typeset() or get_raw_typeset() to get the
information you want.
base: Option<TypeVarParent>Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for TypeVarContent
impl !Send for TypeVarContent
impl !Sync for TypeVarContent
impl Unpin for TypeVarContent
impl !UnwindSafe for TypeVarContent
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,