[][src]Struct yubihsm::mockhsm::MockHsm

pub struct MockHsm(_);

Software simulation of a YubiHSM2 intended for testing implemented as a yubihsm::Connection.

This only implements a subset of the YubiHSM's functionality, and does NOT properly enforce access control / capabilities!

It is STRONGLY recommended to also test live against a real device.

To enable, make sure to build yubihsm.rs with the mockhsm cargo feature

Methods

impl MockHsm[src]

pub fn new() -> Self[src]

Create a new MockHsm

Trait Implementations

impl Connector for MockHsm[src]

fn connect(&self) -> Result<Box<dyn Connection>, ConnectionError>[src]

Create a new connection with a clone of the MockHsm state

fn healthcheck(&self) -> Result<(), ConnectionError>[src]

Rust never sleeps

fn serial_number(&self) -> Result<SerialNumber, ConnectionError>[src]

Get the serial number for the current YubiHSM2 (if available)

impl Clone for MockHsm[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Into<Box<dyn Connector + 'static>> for MockHsm[src]

impl Default for MockHsm[src]

impl Debug for MockHsm[src]

Auto Trait Implementations

impl Send for MockHsm

impl Sync for MockHsm

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for 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, 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> Any for T where
    T: 'static + ?Sized
[src]

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

impl<T> Same for T

type Output = T

Should always be Self