Trait FutureSendStatic

Source
pub trait FutureSendStatic:
    Future<Output = ()>
    + Send
    + 'static { }

Implementors§

Source§

impl<T> FutureSendStatic for T
where T: Future<Output = ()> + Send + 'static,