Enum deno_core::Op[][src]

pub enum Op {
    Sync(OpResult),
    Async(OpAsyncFuture),
    AsyncUnref(OpAsyncFuture),
    NotFound,
}

Variants

Sync

Tuple Fields of Sync

0: OpResult
Async

Tuple Fields of Async

0: OpAsyncFuture
AsyncUnref

AsyncUnref is the variation of Async, which doesn’t block the program exiting.

Tuple Fields of AsyncUnref

0: OpAsyncFuture
NotFound

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.