Trait freya::prelude::UseFutureDep  
pub trait UseFutureDep: Sized + Clone {
    type Out;
    // Required methods
    fn out(&self) -> Self::Out;
    fn apply(
        self,
        state: &mut Vec<Box<dyn Any + 'static, Global>, Global>
    ) -> bool;
}