Skip to main content

HoprNodeOperations

Trait HoprNodeOperations 

pub trait HoprNodeOperations {
    // Required method
    fn status(&self) -> HoprState;
}

Required Methods§

fn status(&self) -> HoprState

Implementors§

Source§

impl<Chain, Db, Graph, Net> HoprNodeOperations for Hopr<Chain, Db, Graph, Net>
where Chain: HoprChainApi + Clone + Send + Sync + 'static, Db: HoprNodeDbApi + Clone + Send + Sync + 'static, Graph: NetworkGraphView<NodeId = OffchainPublicKey> + NetworkGraphUpdate + Clone + Send + Sync + 'static, Net: NetworkView + NetworkStreamControl + Send + Sync + Clone + 'static,