pub trait ProofModule {
// Required method
fn send_request<'life0, 'async_trait>(
&'life0 self,
options: ProofRequestOptions,
) -> Pin<Box<dyn Future<Output = Result<ProofRequestResponse>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}
Expand description
Generic cloudagent proof module
Required Methods§
Sourcefn send_request<'life0, 'async_trait>(
&'life0 self,
options: ProofRequestOptions,
) -> Pin<Box<dyn Future<Output = Result<ProofRequestResponse>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn send_request<'life0, 'async_trait>(
&'life0 self,
options: ProofRequestOptions,
) -> Pin<Box<dyn Future<Output = Result<ProofRequestResponse>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Send a proof request via the connection id to another agent