Struct rustls::server::NoServerSessionStorage
source · pub struct NoServerSessionStorage {}
Expand description
Something which never stores sessions.
Trait Implementations§
source§impl Debug for NoServerSessionStorage
impl Debug for NoServerSessionStorage
source§impl StoresServerSessions for NoServerSessionStorage
impl StoresServerSessions for NoServerSessionStorage
source§fn 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.source§fn 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.Auto Trait Implementations§
impl Freeze for NoServerSessionStorage
impl RefUnwindSafe for NoServerSessionStorage
impl Send for NoServerSessionStorage
impl Sync for NoServerSessionStorage
impl Unpin for NoServerSessionStorage
impl UnwindSafe for NoServerSessionStorage
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more