pub struct DelayShutdownToken<T: Clone> { /* private fields */ }
Expand description

Token that delays shutdown completion as long as it exists.

The token can be cloned and sent to different threads and tasks freely.

All clones must be dropped before the shutdown can complete.

Implementations§

source§

impl<T: Clone> DelayShutdownToken<T>

source

pub fn wrap_future<F: Future>(self, future: F) -> WrapDelayShutdown<T, F>

Wrap a future to delay shutdown completion until the wrapped future completes or until it is dropped.

This consumes the token to avoid keeping an unused token around by accident, which would delay shutdown indefinitely. If you wish to use the token multiple times, you can clone it first:

let future = delay_shutdown_token.clone().wrap_future(future);

The returned future transparently completes with the value of the wrapped future. However, the shutdown will not be considered complete until the future completes or is dropped.

Trait Implementations§

source§

impl<T: Clone> Clone for DelayShutdownToken<T>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T: Clone> Drop for DelayShutdownToken<T>

source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<T> Freeze for DelayShutdownToken<T>

§

impl<T> RefUnwindSafe for DelayShutdownToken<T>

§

impl<T> Send for DelayShutdownToken<T>
where T: Send,

§

impl<T> Sync for DelayShutdownToken<T>
where T: Send,

§

impl<T> Unpin for DelayShutdownToken<T>

§

impl<T> UnwindSafe for DelayShutdownToken<T>

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.