Enum wasmtime::component::Type

source ·
pub enum Type {
Show 23 variants Bool, S8, U8, S16, U16, S32, U32, S64, U64, Float32, Float64, Char, String, List(List), Record(Record), Tuple(Tuple), Variant(Variant), Enum(Enum), Option(OptionType), Result(ResultType), Flags(Flags), Own(ResourceType), Borrow(ResourceType),
}
Available on crate features runtime and component-model only.
Expand description

Represents a component model interface type

Variants§

§

Bool

§

S8

§

U8

§

S16

§

U16

§

S32

§

U32

§

S64

§

U64

§

Float32

§

Float64

§

Char

§

String

§

List(List)

§

Record(Record)

§

Tuple(Tuple)

§

Variant(Variant)

§

Enum(Enum)

§

Option(OptionType)

§

Result(ResultType)

§

Flags(Flags)

§

Own(ResourceType)

§

Borrow(ResourceType)

Implementations§

source§

impl Type

source

pub fn unwrap_list(&self) -> &List

Retrieve the inner List of a Type::List.

§Panics

This will panic if self is not a Type::List.

source

pub fn unwrap_record(&self) -> &Record

Retrieve the inner Record of a Type::Record.

§Panics

This will panic if self is not a Type::Record.

source

pub fn unwrap_tuple(&self) -> &Tuple

Retrieve the inner Tuple of a Type::Tuple.

§Panics

This will panic if self is not a Type::Tuple.

source

pub fn unwrap_variant(&self) -> &Variant

Retrieve the inner Variant of a Type::Variant.

§Panics

This will panic if self is not a Type::Variant.

source

pub fn unwrap_enum(&self) -> &Enum

Retrieve the inner Enum of a Type::Enum.

§Panics

This will panic if self is not a Type::Enum.

source

pub fn unwrap_option(&self) -> &OptionType

Retrieve the inner OptionType of a Type::Option.

§Panics

This will panic if self is not a Type::Option.

source

pub fn unwrap_result(&self) -> &ResultType

Retrieve the inner ResultType of a Type::Result.

§Panics

This will panic if self is not a Type::Result.

source

pub fn unwrap_flags(&self) -> &Flags

Retrieve the inner Flags of a Type::Flags.

§Panics

This will panic if self is not a Type::Flags.

source

pub fn unwrap_own(&self) -> &ResourceType

Retrieve the inner ResourceType of a Type::Own.

§Panics

This will panic if self is not a Type::Own.

source

pub fn unwrap_borrow(&self) -> &ResourceType

Retrieve the inner ResourceType of a Type::Borrow.

§Panics

This will panic if self is not a Type::Borrow.

Trait Implementations§

source§

impl Clone for Type

source§

fn clone(&self) -> Type

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Type

source§

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

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

impl PartialEq for Type

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for Type

source§

impl StructuralPartialEq for Type

Auto Trait Implementations§

§

impl Freeze for Type

§

impl RefUnwindSafe for Type

§

impl Send for Type

§

impl Sync for Type

§

impl Unpin for Type

§

impl UnwindSafe for Type

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
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

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

Initializes a with the given initializer. Read more
§

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

Dereferences the given pointer. Read more
§

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

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

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

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.