pub trait OpenFlow where
Self: Send + Sync, {
fn open<'life0, 'life1, 'async_trait>(
&'life0 self,
builder: ChainBuilder,
key: &'life1 ChainKey,
wire_encryption: Option<KeySize>
) -> Pin<Box<dyn Future<Output = Result<OpenAction, ChainCreationError>> + Send + 'async_trait>>
where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait;
fn message_of_the_day<'life0, 'life1, 'async_trait>(
&'life0 self,
chain: &'life1 Arc<Chain>
) -> Pin<Box<dyn Future<Output = Result<Option<String>, ChainCreationError>> + Send + 'async_trait>>
where
'life0: 'async_trait,
'life1: 'async_trait,
Self: 'async_trait;
fn hello_path(&self) -> &str;
}