Struct amiya::BuiltInExecutor[][src]

pub struct BuiltInExecutor;

Amiya built-in multi-thread async executor.

All instances of this type share one static executor under the hood. The inner executor starts N threads to run async task, N is count of your cpu cores.

In most case, you do not used this type directly, all created Amiya server have a instance of it by default.

Notice

If you disable the built-in-executor default feature, you need to call Amiya::executor() with your custom executor. Otherwise Amiya::listen() will not compile.

Trait Implementations

impl Clone for BuiltInExecutor[src]

impl Debug for BuiltInExecutor[src]

impl Default for BuiltInExecutor[src]

impl Executor for BuiltInExecutor[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,