bitwarden_ipc::traits::session_repository

Trait SessionRepository

Source
pub trait SessionRepository {
    type Session;
    type GetError;
    type SaveError;
    type RemoveError;

    // Required methods
    fn get(
        &self,
        destination: Endpoint,
    ) -> impl Future<Output = Result<Option<Self::Session>, Self::GetError>>;
    fn save(
        &self,
        destination: Endpoint,
        session: Self::Session,
    ) -> impl Future<Output = Result<(), Self::SaveError>>;
    fn remove(
        &self,
        destination: Endpoint,
    ) -> impl Future<Output = Result<(), Self::RemoveError>>;
}

Required Associated Types§

Required Methods§

Source

fn get( &self, destination: Endpoint, ) -> impl Future<Output = Result<Option<Self::Session>, Self::GetError>>

Source

fn save( &self, destination: Endpoint, session: Self::Session, ) -> impl Future<Output = Result<(), Self::SaveError>>

Source

fn remove( &self, destination: Endpoint, ) -> impl Future<Output = Result<(), Self::RemoveError>>

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.

Implementations on Foreign Types§

Source§

impl<Session> SessionRepository for RwLock<HashMap<Endpoint, Session>>
where Session: Clone,

Source§

type Session = Session

Source§

type GetError = ()

Source§

type SaveError = ()

Source§

type RemoveError = ()

Source§

async fn get(&self, destination: Endpoint) -> Result<Option<Self::Session>, ()>

Source§

async fn save( &self, destination: Endpoint, session: Self::Session, ) -> Result<(), ()>

Source§

async fn remove(&self, destination: Endpoint) -> Result<(), ()>

Implementors§