pub trait UseFutureDep: Sized + Clone {
    type Out;

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

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors