pub trait NodeManager:
Send
+ Sync
+ Any
+ Debug {
// Required methods
fn start<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn stop<'life0, 'async_trait>(
&'life0 mut self,
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn get_state<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<NodeState>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn rpc_port(&self) -> u16;
}
Expand description
Trait defining the interface for a Bitcoin node manager