AsyncTryApplyGetFut

Trait AsyncTryApplyGetFut 

Source
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§

Source

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.

Implementors§

Source§

impl<'a, G: AsyncTryGetFut<'a>> AsyncTryApplyGetFut<'a> for G