pub trait UseFutureDep: Sized + Clone {
    type Out;
    fn out(&self) -> Self::Out;
fn apply(self, state: &mut Vec<Box<dyn Any>>) -> bool; }

Associated Types

Required methods

Implementations on Foreign Types

Implementors