pub trait ClientTrait {
    // Required method
    fn take_out_components_for_shutdown(
        &self
    ) -> (Weak<BlockDataManager>, Option<Arc<PosVerifier>>, Option<Arc<dyn Stopable>>);
}

Required Methods§

Implementors§

source§

impl<BlockGenT: 'static + Stopable, Rest> ClientTrait for ClientComponents<BlockGenT, Rest>