bitwarden_ipc::traits::crypto_provider

Trait CryptoProvider

Source
pub trait CryptoProvider<Com, Ses>
where Com: CommunicationBackend, Ses: SessionRepository<Session = Self::Session>,
{ 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§

Source

fn send( &self, communication: &Com, sessions: &Ses, message: OutgoingMessage, ) -> impl Future<Output = Result<(), SendError<Self::SendError, Com::SendError>>>

Source

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.

Implementors§