pub trait AsyncSendTryApplyGetFut<'a>: AsyncSendTryGetFut<'a> {
// Required method
async fn apply_to(self, val: Self::Input) -> AsyncSendTryOutput<'a, Self>;
}Expand description
An extension trait to call crate::AsyncSendTry
Required Methods§
Sourceasync fn apply_to(self, val: Self::Input) -> AsyncSendTryOutput<'a, Self>
async fn apply_to(self, val: Self::Input) -> AsyncSendTryOutput<'a, Self>
Just calls crate::AsyncSendTry
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.