Enum tss_esapi::handles::TpmHandle

source ·
pub enum TpmHandle {
    Pcr(PcrTpmHandle),
    NvIndex(NvIndexTpmHandle),
    HmacSession(HmacSessionTpmHandle),
    LoadedSession(LoadedSessionTpmHandle),
    PolicySession(PolicySessionTpmHandle),
    SavedSession(SavedSessionTpmHandle),
    Permanent(PermanentTpmHandle),
    Transient(TransientTpmHandle),
    Persistent(PersistentTpmHandle),
    AttachedComponent(AttachedComponentTpmHandle),
}
Expand description

Enum representing the different types of tpm handles of a TPM handle.

  • Details The TPM handles are used to reference shielded locations of various types within the TPM.

  • OBS Do not confuse the TpmHandles with the ESYS ObjectHandle.

Variants§

Trait Implementations§

source§

impl Clone for TpmHandle

source§

fn clone(&self) -> TpmHandle

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for TpmHandle

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<AttachedComponentTpmHandle> for TpmHandle

source§

fn from(specific_tpm_handle: AttachedComponentTpmHandle) -> TpmHandle

Converts to this type from the input type.
source§

impl From<Enables> for TpmHandle

source§

fn from(enables: Enables) -> TpmHandle

Converts to this type from the input type.
source§

impl From<Hierarchy> for TpmHandle

source§

fn from(hierarchy: Hierarchy) -> TpmHandle

Converts to this type from the input type.
source§

impl From<HierarchyAuth> for TpmHandle

source§

fn from(hierarchy_auth: HierarchyAuth) -> TpmHandle

Converts to this type from the input type.
source§

impl From<HmacSessionTpmHandle> for TpmHandle

source§

fn from(specific_tpm_handle: HmacSessionTpmHandle) -> TpmHandle

Converts to this type from the input type.
source§

impl From<LoadedSessionTpmHandle> for TpmHandle

source§

fn from(specific_tpm_handle: LoadedSessionTpmHandle) -> TpmHandle

Converts to this type from the input type.
source§

impl From<NvIndexTpmHandle> for TpmHandle

source§

fn from(specific_tpm_handle: NvIndexTpmHandle) -> TpmHandle

Converts to this type from the input type.
source§

impl From<PcrTpmHandle> for TpmHandle

source§

fn from(specific_tpm_handle: PcrTpmHandle) -> TpmHandle

Converts to this type from the input type.
source§

impl From<PermanentTpmHandle> for TpmHandle

source§

fn from(specific_tpm_handle: PermanentTpmHandle) -> TpmHandle

Converts to this type from the input type.
source§

impl From<PersistentTpmHandle> for TpmHandle

source§

fn from(specific_tpm_handle: PersistentTpmHandle) -> TpmHandle

Converts to this type from the input type.
source§

impl From<PolicySessionTpmHandle> for TpmHandle

source§

fn from(specific_tpm_handle: PolicySessionTpmHandle) -> TpmHandle

Converts to this type from the input type.
source§

impl From<SavedSessionTpmHandle> for TpmHandle

source§

fn from(specific_tpm_handle: SavedSessionTpmHandle) -> TpmHandle

Converts to this type from the input type.
source§

impl From<TpmHandle> for TPM2_HANDLE

source§

fn from(tpm_handle: TpmHandle) -> TPM2_HANDLE

Converts to this type from the input type.
source§

impl From<TransientTpmHandle> for TpmHandle

source§

fn from(specific_tpm_handle: TransientTpmHandle) -> TpmHandle

Converts to this type from the input type.
source§

impl PartialEq for TpmHandle

source§

fn eq(&self, other: &TpmHandle) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl TryFrom<TpmHandle> for AttachedComponentTpmHandle

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(general_tpm_handle: TpmHandle) -> Result<AttachedComponentTpmHandle>

Performs the conversion.
source§

impl TryFrom<TpmHandle> for Enables

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(tpm_handle: TpmHandle) -> Result<Enables>

Performs the conversion.
source§

impl TryFrom<TpmHandle> for Hierarchy

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(tpm_handle: TpmHandle) -> Result<Hierarchy>

Performs the conversion.
source§

impl TryFrom<TpmHandle> for HierarchyAuth

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(tpm_handle: TpmHandle) -> Result<HierarchyAuth>

Performs the conversion.
source§

impl TryFrom<TpmHandle> for HmacSessionTpmHandle

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(general_tpm_handle: TpmHandle) -> Result<HmacSessionTpmHandle>

Performs the conversion.
source§

impl TryFrom<TpmHandle> for LoadedSessionTpmHandle

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(general_tpm_handle: TpmHandle) -> Result<LoadedSessionTpmHandle>

Performs the conversion.
source§

impl TryFrom<TpmHandle> for NvIndexTpmHandle

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(general_tpm_handle: TpmHandle) -> Result<NvIndexTpmHandle>

Performs the conversion.
source§

impl TryFrom<TpmHandle> for PcrTpmHandle

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(general_tpm_handle: TpmHandle) -> Result<PcrTpmHandle>

Performs the conversion.
source§

impl TryFrom<TpmHandle> for PermanentTpmHandle

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(general_tpm_handle: TpmHandle) -> Result<PermanentTpmHandle>

Performs the conversion.
source§

impl TryFrom<TpmHandle> for PersistentTpmHandle

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(general_tpm_handle: TpmHandle) -> Result<PersistentTpmHandle>

Performs the conversion.
source§

impl TryFrom<TpmHandle> for PolicySessionTpmHandle

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(general_tpm_handle: TpmHandle) -> Result<PolicySessionTpmHandle>

Performs the conversion.
source§

impl TryFrom<TpmHandle> for SavedSessionTpmHandle

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(general_tpm_handle: TpmHandle) -> Result<SavedSessionTpmHandle>

Performs the conversion.
source§

impl TryFrom<TpmHandle> for TransientTpmHandle

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(general_tpm_handle: TpmHandle) -> Result<TransientTpmHandle>

Performs the conversion.
source§

impl TryFrom<u32> for TpmHandle

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(tss_tpm_handle: TPM2_HANDLE) -> Result<TpmHandle>

Performs the conversion.
source§

impl Copy for TpmHandle

source§

impl Eq for TpmHandle

source§

impl StructuralPartialEq for TpmHandle

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> Free for T

source§

unsafe fn free(ptr_ref: NonNull<T>)

Drops the content pointed by this pointer and frees it. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.