Struct rustls::server::NoServerSessionStorage
source · [−]pub struct NoServerSessionStorage {}
Expand description
Something which never stores sessions.
Trait Implementations
sourceimpl StoresServerSessions for NoServerSessionStorage
impl StoresServerSessions for NoServerSessionStorage
sourcefn put(&self, _id: Vec<u8>, _sec: Vec<u8>) -> bool
fn put(&self, _id: Vec<u8>, _sec: Vec<u8>) -> bool
Store session secrets encoded in value
against key
,
overwrites any existing value against key
. Returns true
if the value was stored. Read more
sourcefn get(&self, _id: &[u8]) -> Option<Vec<u8>>
fn get(&self, _id: &[u8]) -> Option<Vec<u8>>
Find a value with the given key
. Return it, or None
if it doesn’t exist. Read more
Auto Trait Implementations
impl RefUnwindSafe for NoServerSessionStorage
impl Send for NoServerSessionStorage
impl Sync for NoServerSessionStorage
impl Unpin for NoServerSessionStorage
impl UnwindSafe for NoServerSessionStorage
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more