Struct rustls::NoServerSessionStorage [−][src]
pub struct NoServerSessionStorage {}
Expand description
Something which never stores sessions.
Trait Implementations
impl StoresServerSessions for NoServerSessionStorage
[src]
impl StoresServerSessions for NoServerSessionStorage
[src]fn put(&self, _id: Vec<u8>, _sec: Vec<u8>) -> bool
[src]
fn put(&self, _id: Vec<u8>, _sec: Vec<u8>) -> bool
[src]Store session secrets encoded in value
against key
,
overwrites any existing value against key
. Returns true
if the value was stored. Read more