Struct delay_timer::entity::DelayTimerBuilder
source · [−]pub struct DelayTimerBuilder { /* private fields */ }Expand description
Builds DelayTimer with custom configuration values.
Methods can be chained in order to set the configuration values. The
DelayTimer is constructed by calling build.
Examples
use delay_timer::entity::DelayTimerBuilder;
Implementations
sourceimpl DelayTimerBuilder
impl DelayTimerBuilder
sourcepub fn build(self) -> DelayTimer
pub fn build(self) -> DelayTimer
Build DelayTimer.
sourceimpl DelayTimerBuilder
impl DelayTimerBuilder
Required features
This function requires the tokio-support feature of the delay_timer
crate to be enabled.
sourcepub fn smol_runtime_by_default(self) -> Self
pub fn smol_runtime_by_default(self) -> Self
With this API, DelayTimer use default Smol-Runtime is generated internally.
sourcepub fn tokio_runtime_by_default(self) -> Self
pub fn tokio_runtime_by_default(self) -> Self
With this API, DelayTimer use default TokioRuntime is generated internally.
By default the internal runtime is Tokio, this API does not require a user-initiated call.
sourcepub fn tokio_runtime_by_custom(self, rt: Runtime) -> Self
pub fn tokio_runtime_by_custom(self, rt: Runtime) -> Self
With this API, DelayTimer internally use the user customized and independent TokioRuntime.
With this api, DelayTimer internal will share a TokioRuntime with the user .
sourceimpl DelayTimerBuilder
impl DelayTimerBuilder
Required features
This function requires the status-report feature of the delay_timer
crate to be enabled.
sourcepub fn enable_status_report(self) -> Self
Available on crate feature status-report only.
pub fn enable_status_report(self) -> Self
status-report only.Whether to expose public events.
Trait Implementations
sourceimpl Clone for DelayTimerBuilder
impl Clone for DelayTimerBuilder
sourcefn clone(&self) -> DelayTimerBuilder
fn clone(&self) -> DelayTimerBuilder
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for DelayTimerBuilder
impl Debug for DelayTimerBuilder
sourceimpl Default for DelayTimerBuilder
impl Default for DelayTimerBuilder
sourcefn default() -> DelayTimerBuilder
fn default() -> DelayTimerBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl !RefUnwindSafe for DelayTimerBuilder
impl Send for DelayTimerBuilder
impl Sync for DelayTimerBuilder
impl Unpin for DelayTimerBuilder
impl !UnwindSafe for DelayTimerBuilder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn instrument(self, span: Span) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
sourcefn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
fn in_current_span(self) -> Instrumented<Self>ⓘNotable traits for Instrumented<T>impl<T> Future for Instrumented<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output; where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output; where
S: Into<Dispatch>,
T: Future, type Output = <T as Future>::Output;
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
fn with_current_subscriber(self) -> WithDispatch<Self>ⓘNotable traits for WithDispatch<T>impl<T> Future for WithDispatch<T> where
T: Future, type Output = <T as Future>::Output;
T: Future, type Output = <T as Future>::Output;
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more