Struct async_nats::jetstream::stream::Purge
source · Implementations§
Trait Implementations§
source§impl<SEQUENCE, KEEP> Debug for Purge<SEQUENCE, KEEP>where
SEQUENCE: ToAssign + Debug,
KEEP: ToAssign + Debug,
impl<SEQUENCE, KEEP> Debug for Purge<SEQUENCE, KEEP>where
SEQUENCE: ToAssign + Debug,
KEEP: ToAssign + Debug,
source§impl<S, K> IntoFuture for Purge<S, K>where
S: ToAssign + Send,
K: ToAssign + Send,
impl<S, K> IntoFuture for Purge<S, K>where
S: ToAssign + Send,
K: ToAssign + Send,
§type Output = Result<PurgeResponse, Box<dyn Error + Send + Sync + 'static, Global>>
type Output = Result<PurgeResponse, Box<dyn Error + Send + Sync + 'static, Global>>
The output that the future will produce on completion.
§type IntoFuture = Pin<Box<dyn Future<Output = Result<PurgeResponse, Box<dyn Error + Send + Sync + 'static, Global>>> + Send + 'static, Global>>
type IntoFuture = Pin<Box<dyn Future<Output = Result<PurgeResponse, Box<dyn Error + Send + Sync + 'static, Global>>> + Send + 'static, Global>>
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