[][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) -> Box<dyn Connectable>[src]

Create a new UsbConnector with the given configuration

Trait Implementations

impl Default for UsbConnector[src]

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 Connectable + 'static>> for UsbConnector[src]

impl Debug for UsbConnector[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T[src]

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, 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