Struct async_nats::jetstream::context::PublishAckFuture
source · pub struct PublishAckFuture { /* private fields */ }
Trait Implementations§
source§impl Debug for PublishAckFuture
impl Debug for PublishAckFuture
source§impl IntoFuture for PublishAckFuture
impl IntoFuture for PublishAckFuture
§type Output = Result<PublishAck, Box<dyn Error + Send + Sync + 'static, Global>>
type Output = Result<PublishAck, Box<dyn Error + Send + Sync + 'static, Global>>
The output that the future will produce on completion.
§type IntoFuture = Pin<Box<dyn Future<Output = Result<PublishAck, Box<dyn Error + Send + Sync + 'static, Global>>> + Send + 'static, Global>>
type IntoFuture = Pin<Box<dyn Future<Output = Result<PublishAck, 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