pub trait AsyncTryApplyGetFut<'a>: AsyncTryGetFut<'a> {
// Required method
async fn apply_to(self, val: Self::Input) -> AsyncTryOutput<'a, Self>;
}Expand description
An extension trait to call crate::AsyncTry
Required Methods§
Sourceasync fn apply_to(self, val: Self::Input) -> AsyncTryOutput<'a, Self>
async fn apply_to(self, val: Self::Input) -> AsyncTryOutput<'a, Self>
Just calls crate::try_get
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.