hyper::ext::informational

Trait OnInformationalCallback

Source
pub(crate) trait OnInformationalCallback {
    // Required method
    fn on_informational(&self, res: Response<()>);
}

Required Methods§

Implementors§

Source§

impl<F> OnInformationalCallback for OnInformationalClosure<F>
where F: Fn(Response<'_>) + Send + Sync + 'static,