[][src]Struct yubihsm::session::Session

pub struct Session { /* fields omitted */ }

Authenticated and encrypted (SCP03) Session with the HSM. A Session is needed to perform any command.

Sessions are automatically closed on Drop, releasing HSM session resources and wiping the ephemeral keys used to encrypt the session.

Methods

impl Session[src]

pub fn is_open(&self) -> bool[src]

Is this Session still open?

pub fn id(&self) -> Id[src]

Session ID value (1-16)

pub fn duration(&self) -> Duration[src]

How long has this session been open?

pub fn messages_sent(&self) -> Result<usize, SessionError>[src]

Number of messages sent during this session

pub fn is_timed_out(&self) -> bool[src]

Has this session timed out?

Trait Implementations

impl Drop for Session[src]

fn drop(&mut self)[src]

Make a best effort to close the session if it's still healthy

Auto Trait Implementations

impl Send for Session

impl Sync for Session

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Same for T

type Output = T

Should always be Self