pub trait CryptoProvider<Com, Ses>{
type Session;
type SendError;
type ReceiveError;
// Required methods
fn send(
&self,
communication: &Com,
sessions: &Ses,
message: OutgoingMessage,
) -> impl Future<Output = Result<(), SendError<Self::SendError, Com::SendError>>>;
fn receive(
&self,
communication: &Com,
sessions: &Ses,
) -> impl Future<Output = Result<IncomingMessage, ReceiveError<Self::ReceiveError, Com::ReceiveError>>>;
}
Required Associated Types§
Required Methods§
fn send( &self, communication: &Com, sessions: &Ses, message: OutgoingMessage, ) -> impl Future<Output = Result<(), SendError<Self::SendError, Com::SendError>>>
fn receive( &self, communication: &Com, sessions: &Ses, ) -> impl Future<Output = Result<IncomingMessage, ReceiveError<Self::ReceiveError, Com::ReceiveError>>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.