[][src]Struct yubihsm::connector::usb::UsbConnector

pub struct UsbConnector(_);

Connect to the HSM via USB.

UsbConnector is available when the usb cargo feature is enabled. It requires libusb as a dependency, but does not otherwise need the Yubico SDK (which is a vicarious dependency of UsbConnector which needs the yubihsm-connector process).

Methods

impl UsbConnector[src]

pub fn create(config: &UsbConfig) -> Result<Self, ConnectionError>[src]

Create a new UsbConnector with the given configuration

Trait Implementations

impl Connector for UsbConnector[src]

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

Open a connection to yubihsm-connector

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

Check that the connection to the HSM is healthy

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

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

impl Clone for UsbConnector[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 UsbConnector[src]

impl Default for UsbConnector[src]

impl Debug for UsbConnector[src]

Auto Trait Implementations

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