Enum TypeKind

Source
pub enum TypeKind {
    VoidType,
    TimeType,
    IntType(usize),
    EnumType(usize),
    PointerType(Type),
    SignalType(Type),
    ArrayType(usize, Type),
    StructType(Vec<Type>),
    FuncType(Vec<Type>, Type),
    EntityType(Vec<Type>, Vec<Type>),
}
Expand description

The different kinds of types.

Variants§

§

VoidType

The void type.

§

TimeType

The time type.

§

IntType(usize)

Integer types like i32.

§

EnumType(usize)

Enumerated types like n42.

§

PointerType(Type)

Pointer types like i32*.

§

SignalType(Type)

Signal types like i32$.

§

ArrayType(usize, Type)

Array types like [4 x i32].

§

StructType(Vec<Type>)

Struct types like {i8, i32}.

§

FuncType(Vec<Type>, Type)

Function types like (i32) void.

§

EntityType(Vec<Type>, Vec<Type>)

Entity types like (i8, i8; i32).

Implementations§

Source§

impl TypeKind

Source

pub fn unwrap_int(&self) -> usize

Unwrap the type to its integer bit width, or panic if the type is not an integer.

Source

pub fn unwrap_enum(&self) -> usize

Unwrap the type to its number of enumerated states, or panic if the type is not an enum.

Source

pub fn unwrap_pointer(&self) -> &Type

Unwrap the type to its pointer data type, or panic if the type is not a pointer. E.g. yields the i8 type in i8*.

Source

pub fn unwrap_signal(&self) -> &Type

Unwrap the type to its signal data type, or panic if the type is not an integer. E.g. yields the i8 type in i8$.

Source

pub fn unwrap_array(&self) -> (usize, &Type)

Unwrap the type to its array length and element type, or panic if the type is not an array. E.g. yields the (16, i32) in [16 x i32].

Source

pub fn unwrap_struct(&self) -> &[Type]

Unwrap the type to its struct fields, or panic if the type is not a struct. E.g. yields the [i8, i16] in {i8, i16}.

Source

pub fn unwrap_func(&self) -> (&[Type], &Type)

Unwrap the type into arguments and return type, or panic if the type is not a function.

Source

pub fn unwrap_entity(&self) -> (&[Type], &[Type])

Unwrap the type into input and output arguments, or panic if the type is not an entity.

Source

pub fn is_void(&self) -> bool

Check if this is a void type.

Source

pub fn is_time(&self) -> bool

Check if this is a time type.

Source

pub fn is_int(&self) -> bool

Check if this is an integer type.

Source

pub fn is_enum(&self) -> bool

Check if this is an enum type.

Source

pub fn is_pointer(&self) -> bool

Check if this is a pointer type.

Source

pub fn is_signal(&self) -> bool

Check if this is a signal type.

Source

pub fn is_array(&self) -> bool

Check if this is an array type.

Source

pub fn is_struct(&self) -> bool

Check if this is a struct type.

Source

pub fn is_func(&self) -> bool

Check if this is a func type.

Source

pub fn is_entity(&self) -> bool

Check if this is an entity type.

Source

pub fn len(&self) -> usize

Extract the length of the type.

This is the number of:

  • bits in an integer
  • states in an enum
  • elements in an array
  • fields in a struct

Returns zero for all other types.

Trait Implementations§

Source§

impl Debug for TypeKind

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for TypeKind

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for TypeKind

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Hash for TypeKind

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for TypeKind

Source§

fn cmp(&self, other: &TypeKind) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for TypeKind

Source§

fn eq(&self, other: &TypeKind) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for TypeKind

Source§

fn partial_cmp(&self, other: &TypeKind) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for TypeKind

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Eq for TypeKind

Source§

impl StructuralPartialEq for TypeKind

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,