pub struct Purge<'a, SEQUENCE, KEEP>{ /* private fields */ }Implementations§
Trait Implementations§
Source§impl<'a, S, K> IntoFuture for Purge<'a, S, K>
impl<'a, S, K> IntoFuture for Purge<'a, S, K>
Source§type Output = Result<PurgeResponse, Error<PurgeErrorKind>>
type Output = Result<PurgeResponse, Error<PurgeErrorKind>>
The output that the future will produce on completion.
Source§type IntoFuture = Pin<Box<dyn Future<Output = Result<PurgeResponse, Error<PurgeErrorKind>>> + Send + 'a>>
type IntoFuture = Pin<Box<dyn Future<Output = Result<PurgeResponse, Error<PurgeErrorKind>>> + Send + 'a>>
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl<'a, SEQUENCE, KEEP> Freeze for Purge<'a, SEQUENCE, KEEP>
impl<'a, SEQUENCE, KEEP> RefUnwindSafe for Purge<'a, SEQUENCE, KEEP>where
SEQUENCE: RefUnwindSafe,
KEEP: RefUnwindSafe,
impl<'a, SEQUENCE, KEEP> Send for Purge<'a, SEQUENCE, KEEP>
impl<'a, SEQUENCE, KEEP> Sync for Purge<'a, SEQUENCE, KEEP>
impl<'a, SEQUENCE, KEEP> Unpin for Purge<'a, SEQUENCE, KEEP>
impl<'a, SEQUENCE, KEEP> UnwindSafe for Purge<'a, SEQUENCE, KEEP>where
SEQUENCE: UnwindSafe,
KEEP: UnwindSafe,
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
Mutably borrows from an owned value. Read more