pub trait UseFutureDep: Sized + Clone {
    type Out;

    fn out(&self) -> Self::Out;
    fn apply(
        self,
        state: &mut Vec<Box<dyn Any + 'static, Global>, Global>
    ) -> bool; }

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors