Trait hyper::common::lazy::Started

source ·
pub(crate) trait Started: Future {
    // Required method
    fn started(&self) -> bool;
}

Required Methods§

source

fn started(&self) -> bool

Implementors§

source§

impl<F, R> Started for Lazy<F, R>where F: FnOnce() -> R, R: Future,