CoreFuncKind

Enum CoreFuncKind 

Source
pub enum CoreFuncKind<'a> {
Show 36 variants Lower(CanonLower<'a>), Alias(InlineExportAlias<'a, true>), ResourceNew(CanonResourceNew<'a>), ResourceDrop(CanonResourceDrop<'a>), ResourceRep(CanonResourceRep<'a>), ThreadSpawnRef(CanonThreadSpawnRef<'a>), ThreadSpawnIndirect(CanonThreadSpawnIndirect<'a>), ThreadAvailableParallelism(CanonThreadAvailableParallelism), BackpressureSet, TaskReturn(CanonTaskReturn<'a>), ContextGet(u32), ContextSet(u32), Yield(CanonYield), SubtaskDrop, StreamNew(CanonStreamNew<'a>), StreamRead(CanonStreamRead<'a>), StreamWrite(CanonStreamWrite<'a>), StreamCancelRead(CanonStreamCancelRead<'a>), StreamCancelWrite(CanonStreamCancelWrite<'a>), StreamCloseReadable(CanonStreamCloseReadable<'a>), StreamCloseWritable(CanonStreamCloseWritable<'a>), FutureNew(CanonFutureNew<'a>), FutureRead(CanonFutureRead<'a>), FutureWrite(CanonFutureWrite<'a>), FutureCancelRead(CanonFutureCancelRead<'a>), FutureCancelWrite(CanonFutureCancelWrite<'a>), FutureCloseReadable(CanonFutureCloseReadable<'a>), FutureCloseWritable(CanonFutureCloseWritable<'a>), ErrorContextNew(CanonErrorContextNew<'a>), ErrorContextDebugMessage(CanonErrorContextDebugMessage<'a>), ErrorContextDrop, WaitableSetNew, WaitableSetWait(CanonWaitableSetWait<'a>), WaitableSetPoll(CanonWaitableSetPoll<'a>), WaitableSetDrop, WaitableJoin,
}
Available on crate feature component-model only.
Expand description

Represents the kind of core functions.

Variants§

§

Lower(CanonLower<'a>)

The core function is defined in terms of lowering a component function.

The core function is actually a member of the canon section.

§

Alias(InlineExportAlias<'a, true>)

The core function is defined in terms of aliasing a module instance export.

The core function is actually a member of the core alias section.

§

ResourceNew(CanonResourceNew<'a>)

§

ResourceDrop(CanonResourceDrop<'a>)

§

ResourceRep(CanonResourceRep<'a>)

§

ThreadSpawnRef(CanonThreadSpawnRef<'a>)

§

ThreadSpawnIndirect(CanonThreadSpawnIndirect<'a>)

§

ThreadAvailableParallelism(CanonThreadAvailableParallelism)

§

BackpressureSet

§

TaskReturn(CanonTaskReturn<'a>)

§

ContextGet(u32)

§

ContextSet(u32)

§

Yield(CanonYield)

§

SubtaskDrop

§

StreamNew(CanonStreamNew<'a>)

§

StreamRead(CanonStreamRead<'a>)

§

StreamWrite(CanonStreamWrite<'a>)

§

StreamCancelRead(CanonStreamCancelRead<'a>)

§

StreamCancelWrite(CanonStreamCancelWrite<'a>)

§

StreamCloseReadable(CanonStreamCloseReadable<'a>)

§

StreamCloseWritable(CanonStreamCloseWritable<'a>)

§

FutureNew(CanonFutureNew<'a>)

§

FutureRead(CanonFutureRead<'a>)

§

FutureWrite(CanonFutureWrite<'a>)

§

FutureCancelRead(CanonFutureCancelRead<'a>)

§

FutureCancelWrite(CanonFutureCancelWrite<'a>)

§

FutureCloseReadable(CanonFutureCloseReadable<'a>)

§

FutureCloseWritable(CanonFutureCloseWritable<'a>)

§

ErrorContextNew(CanonErrorContextNew<'a>)

§

ErrorContextDebugMessage(CanonErrorContextDebugMessage<'a>)

§

ErrorContextDrop

§

WaitableSetNew

§

WaitableSetWait(CanonWaitableSetWait<'a>)

§

WaitableSetPoll(CanonWaitableSetPoll<'a>)

§

WaitableSetDrop

§

WaitableJoin

Trait Implementations§

Source§

impl<'a> Debug for CoreFuncKind<'a>

Source§

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

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

impl<'a> Parse<'a> for CoreFuncKind<'a>

Source§

fn parse(parser: Parser<'a>) -> Result<Self>

Attempts to parse Self from parser, returning an error if it could not be parsed. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for CoreFuncKind<'a>

§

impl<'a> RefUnwindSafe for CoreFuncKind<'a>

§

impl<'a> Send for CoreFuncKind<'a>

§

impl<'a> Sync for CoreFuncKind<'a>

§

impl<'a> Unpin for CoreFuncKind<'a>

§

impl<'a> UnwindSafe for CoreFuncKind<'a>

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