Struct security_framework::secure_transport::SessionState [−][src]
pub struct SessionState(_);
Expand description
Specifies the state of a TLS session.
Implementations
impl SessionState
[src]
impl SessionState
[src]pub const IDLE: SessionState
[src]
pub const IDLE: SessionState
[src]The session has not yet started.
pub const HANDSHAKE: SessionState
[src]
pub const HANDSHAKE: SessionState
[src]The session is in the handshake process.
pub const CONNECTED: SessionState
[src]
pub const CONNECTED: SessionState
[src]The session is connected.
pub const CLOSED: SessionState
[src]
pub const CLOSED: SessionState
[src]The session has been terminated.
pub const ABORTED: SessionState
[src]
pub const ABORTED: SessionState
[src]The session has been aborted due to an error.
Trait Implementations
impl Debug for SessionState
[src]
impl Debug for SessionState
[src]impl PartialEq<SessionState> for SessionState
[src]
impl PartialEq<SessionState> for SessionState
[src]fn eq(&self, other: &SessionState) -> bool
[src]
fn eq(&self, other: &SessionState) -> bool
[src]This method tests for self
and other
values to be equal, and is used
by ==
. Read more
fn ne(&self, other: &SessionState) -> bool
[src]
fn ne(&self, other: &SessionState) -> bool
[src]This method tests for !=
.