Struct tss_esapi::handles::ObjectHandle [−][src]
The ObjectHandle is the general handle type and it wraps the ESYS_TR.
All the other more specific handle types can be converted into an ObjectHandle.
Implementations
impl ObjectHandle[src]
impl ObjectHandle[src]
pub const None: ObjectHandle[src]
impl ObjectHandle[src]
pub fn is_none(&self) -> bool[src]
Method that returns true if the handle corresponds to the None handle.
impl ObjectHandle[src]
pub const Password: ObjectHandle[src]
impl ObjectHandle[src]
pub const Owner: ObjectHandle[src]
impl ObjectHandle[src]
pub const Lockout: ObjectHandle[src]
impl ObjectHandle[src]
pub const Endorsement: ObjectHandle[src]
impl ObjectHandle[src]
pub const Platform: ObjectHandle[src]
impl ObjectHandle[src]
pub const PlatformNv: ObjectHandle[src]
impl ObjectHandle[src]
pub const Null: ObjectHandle[src]
Trait Implementations
impl Clone for ObjectHandle[src]
fn clone(&self) -> ObjectHandle[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for ObjectHandle[src]
impl Debug for ObjectHandle[src]
impl Eq for ObjectHandle[src]
impl From<AuthHandle> for ObjectHandle[src]
fn from(handle_self: AuthHandle) -> ObjectHandle[src]
impl From<Enables> for ObjectHandle[src]
fn from(enables: Enables) -> ObjectHandle[src]
impl From<Endorsement> for ObjectHandle[src]
fn from(endorsement: Endorsement) -> ObjectHandle[src]
impl From<Hierarchy> for ObjectHandle[src]
fn from(hierarchy: Hierarchy) -> ObjectHandle[src]
impl From<HierarchyAuth> for ObjectHandle[src]
fn from(hierarchy_auth: HierarchyAuth) -> ObjectHandle[src]
impl From<KeyHandle> for ObjectHandle[src]
fn from(handle_self: KeyHandle) -> ObjectHandle[src]
impl From<Lockout> for ObjectHandle[src]
fn from(_: Lockout) -> ObjectHandle[src]
impl From<NvIndexHandle> for ObjectHandle[src]
fn from(handle_self: NvIndexHandle) -> ObjectHandle[src]
impl From<ObjectHandle> for AuthHandle[src]
fn from(handle_other: ObjectHandle) -> AuthHandle[src]
impl From<ObjectHandle> for NvIndexHandle[src]
fn from(handle_other: ObjectHandle) -> NvIndexHandle[src]
impl From<ObjectHandle> for KeyHandle[src]
fn from(handle_other: ObjectHandle) -> KeyHandle[src]
impl From<ObjectHandle> for SessionHandle[src]
fn from(handle_other: ObjectHandle) -> SessionHandle[src]
impl From<Owner> for ObjectHandle[src]
fn from(owner: Owner) -> ObjectHandle[src]
impl From<PcrHandle> for ObjectHandle[src]
fn from(constant_handle: PcrHandle) -> ObjectHandle[src]
impl From<SessionHandle> for ObjectHandle[src]
fn from(handle_self: SessionHandle) -> ObjectHandle[src]
impl From<u32> for ObjectHandle[src]
fn from(tss_esys_object_handle: ESYS_TR) -> ObjectHandle[src]
impl Hash for ObjectHandle[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl PartialEq<ObjectHandle> for ObjectHandle[src]
fn eq(&self, other: &ObjectHandle) -> bool[src]
fn ne(&self, other: &ObjectHandle) -> bool[src]
impl StructuralEq for ObjectHandle[src]
impl StructuralPartialEq for ObjectHandle[src]
impl TryFrom<ObjectHandle> for PcrHandle[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(other_handle: ObjectHandle) -> Result<PcrHandle>[src]
impl TryFrom<ObjectHandle> for Hierarchy[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(object_handle: ObjectHandle) -> Result<Hierarchy>[src]
impl TryFrom<ObjectHandle> for Enables[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(object_handle: ObjectHandle) -> Result<Enables>[src]
impl TryFrom<ObjectHandle> for HierarchyAuth[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(object_handle: ObjectHandle) -> Result<HierarchyAuth>[src]
impl TryFrom<ObjectHandle> for Owner[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(object_handle: ObjectHandle) -> Result<Owner>[src]
impl TryFrom<ObjectHandle> for Endorsement[src]
type Error = Error
The type returned in the event of a conversion error.
fn try_from(object_handle: ObjectHandle) -> Result<Endorsement>[src]
impl TryFrom<ObjectHandle> for Lockout[src]
Auto Trait Implementations
impl RefUnwindSafe for ObjectHandle
impl Send for ObjectHandle
impl Sync for ObjectHandle
impl Unpin for ObjectHandle
impl UnwindSafe for ObjectHandle
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[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]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,