Struct rustls::internal::msgs::persist::ClientSessionValue [−][src]
Fields
version: ProtocolVersion
cipher_suite: CipherSuite
session_id: SessionID
ticket: PayloadU16
master_secret: PayloadU8
epoch: u64
lifetime: u32
age_add: u32
extended_ms: bool
max_early_data_size: u32
Implementations
impl ClientSessionValue
[src]
pub fn new(
v: ProtocolVersion,
cs: CipherSuite,
sessid: &SessionID,
ticket: Vec<u8>,
ms: Vec<u8>
) -> ClientSessionValue
[src]
v: ProtocolVersion,
cs: CipherSuite,
sessid: &SessionID,
ticket: Vec<u8>,
ms: Vec<u8>
) -> ClientSessionValue
pub fn set_extended_ms_used(&mut self)
[src]
pub fn set_times(
&mut self,
receipt_time_secs: u64,
lifetime_secs: u32,
age_add: u32
)
[src]
&mut self,
receipt_time_secs: u64,
lifetime_secs: u32,
age_add: u32
)
pub fn has_expired(&self, time_now: u64) -> bool
[src]
pub fn get_obfuscated_ticket_age(&self, time_now: u64) -> u32
[src]
pub fn take_ticket(&mut self) -> Vec<u8>
[src]
pub fn set_max_early_data_size(&mut self, sz: u32)
[src]
Trait Implementations
impl Codec for ClientSessionValue
[src]
fn encode(&self, bytes: &mut Vec<u8>)
[src]
fn read(r: &mut Reader<'_>) -> Option<ClientSessionValue>
[src]
fn get_encoding(&self) -> Vec<u8>
[src]
fn read_bytes(bytes: &[u8]) -> Option<Self>
[src]
impl Debug for ClientSessionValue
[src]
Auto Trait Implementations
impl RefUnwindSafe for ClientSessionValue
impl Send for ClientSessionValue
impl Sync for ClientSessionValue
impl Unpin for ClientSessionValue
impl UnwindSafe for ClientSessionValue
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,