[][src]Enum tss_esapi::Tcti

pub enum Tcti {
    Device(DeviceConfig),
    Mssim(MssimConfig),
    Tabrmd(TabrmdConfig),
}

Placeholder TCTI types that can be used when initialising a Context to determine which interface will be used to communicate with the TPM.

Variants

Device(DeviceConfig)

Connect to a TPM available as a device node on the system

For more information about configuration, see this page

Mssim(MssimConfig)

Connect to a TPM (simulator) available as a network device

For more information about configuration, see this page

Tabrmd(TabrmdConfig)

Connect to a TPM through an Access Broker/Resource Manager daemon

For more information about configuration, see this page

Trait Implementations

impl Clone for Tcti[src]

impl Debug for Tcti[src]

impl FromStr for Tcti[src]

type Err = Error

The associated error which can be returned from parsing.

impl PartialEq<Tcti> for Tcti[src]

impl StructuralPartialEq for Tcti[src]

impl TryFrom<Tcti> for CString[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl RefUnwindSafe for Tcti

impl Send for Tcti

impl Sync for Tcti

impl Unpin for Tcti

impl UnwindSafe for Tcti

Blanket Implementations

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

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

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

impl<T> Free for T[src]

impl<T> From<T> for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.