Struct openraft::async_runtime::TokioRuntime

source ·
pub struct TokioRuntime;
Expand description

Tokio is the default asynchronous executor.

Trait Implementations§

source§

impl AsyncRuntime for TokioRuntime

§

type JoinError = JoinError

The error type of Self::JoinHandle.
§

type JoinHandle<T: OptionalSend + 'static> = JoinHandle<T>

The return type of Self::spawn.
§

type Sleep = Sleep

The type that enables the user to sleep in an asynchronous runtime.
§

type Instant = Instant

A measurement of a monotonically non-decreasing clock.
§

type TimeoutError = Elapsed

The timeout error type.
§

type Timeout<R, T: Future<Output = R> + OptionalSend> = Timeout<T>

The timeout type used by Self::timeout and Self::timeout_at that enables the user to await the outcome of a Future.
§

type ThreadLocalRng = ThreadRng

Type of a thread-local random number generator.
§

type OneshotSender<T: OptionalSend> = TokioOneShotSender<T>

Type of a oneshot sender.
§

type OneshotReceiver<T: OptionalSend> = Receiver<T>

Type of a oneshot receiver.
§

type OneshotReceiverError = RecvError

Type of a oneshot receiver error.
source§

fn spawn<T>(future: T) -> Self::JoinHandle<T::Output>
where T: Future + OptionalSend + 'static, T::Output: OptionalSend + 'static,

Spawn a new task.
source§

fn sleep(duration: Duration) -> Self::Sleep

Wait until duration has elapsed.
source§

fn sleep_until(deadline: Self::Instant) -> Self::Sleep

Wait until deadline is reached.
source§

fn timeout<R, F: Future<Output = R> + OptionalSend>( duration: Duration, future: F ) -> Self::Timeout<R, F>

Require a Future to complete before the specified duration has elapsed.
source§

fn timeout_at<R, F: Future<Output = R> + OptionalSend>( deadline: Self::Instant, future: F ) -> Self::Timeout<R, F>

Require a Future to complete before the specified instant in time.
source§

fn is_panic(join_error: &Self::JoinError) -> bool

Check if the Self::JoinError is panic.
source§

fn thread_rng() -> Self::ThreadLocalRng

Get the random number generator to use for generating random numbers. Read more
source§

fn oneshot<T>() -> (Self::OneshotSender<T>, Self::OneshotReceiver<T>)
where T: OptionalSend,

Creates a new one-shot channel for sending single values. Read more
source§

impl Debug for TokioRuntime

source§

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

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

impl Default for TokioRuntime

source§

fn default() -> TokioRuntime

Returns the “default value” for a type. Read more
source§

impl PartialEq for TokioRuntime

source§

fn eq(&self, other: &TokioRuntime) -> 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 TokioRuntime

source§

impl StructuralPartialEq for TokioRuntime

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> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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>,

§

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.
source§

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

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> OptionalSend for T
where T: Send + ?Sized,

source§

impl<T> OptionalSync for T
where T: Sync + ?Sized,