Struct trillium_server_common::Stopper
pub struct Stopper(/* private fields */);
Expand description
This struct provides a synchronized mechanism for canceling Futures and Streams.
Stoppers are cheap to clone.
A clone of the Stopper can be awaited and will be pending until the Stopper is stopped. If the Stopper is stopped before it is awaited, it will be ready immediately.
Implementations§
§impl Stopper
impl Stopper
pub fn new() -> Stopper
pub fn new() -> Stopper
Initialize a stopper that is not yet stopped and that has zero
registered wakers. Any clone of this stopper represents the
same internal state. This is identical to Stopper::default()
pub fn stop(&self)
pub fn stop(&self)
Stop all futures and streams that have been registered to this Stopper or any clone representing the same initial stopper.
pub fn is_stopped(&self) -> bool
pub fn is_stopped(&self) -> bool
Returns whether this stopper (or any clone of it) has been stopped.
pub fn stop_stream<S>(&self, stream: S) -> StreamStopper<S>where
S: Stream,
pub fn stop_stream<S>(&self, stream: S) -> StreamStopper<S>where
S: Stream,
This function returns a new stream which will poll None (indicating a completed stream) when this Stopper has been stopped. The Stream’s Item is unchanged.
pub fn stop_future<F>(&self, future: F) -> FutureStopper<F>where
F: Future,
pub fn stop_future<F>(&self, future: F) -> FutureStopper<F>where
F: Future,
This function returns a Future which wraps the provided future and stops it when this Stopper has been stopped. Note that the Output of the returned future is wrapped with an Option. If the future resolves to None, that indicates that it was stopped instead of polling to completion.
Trait Implementations§
§impl IntoFuture for Stopper
impl IntoFuture for Stopper
§type IntoFuture = Stopped
type IntoFuture = Stopped
§fn into_future(self) -> <Stopper as IntoFuture>::IntoFuture
fn into_future(self) -> <Stopper as IntoFuture>::IntoFuture
Auto Trait Implementations§
impl Freeze for Stopper
impl RefUnwindSafe for Stopper
impl Send for Stopper
impl Sync for Stopper
impl Unpin for Stopper
impl UnwindSafe for Stopper
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)