pub struct CreationTicket { /* private fields */ }
Expand description

Rust native wrapper for TPMT_TK_CREATION objects.

Trait Implementations§

source§

impl Debug for CreationTicket

source§

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

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

impl Ticket for CreationTicket

source§

const POSSIBLE_TAGS: &'static [StructureTag] = _

The tag of the verified ticket.

source§

fn tag(&self) -> StructureTag

Get the tag associated with the creation ticket.

source§

fn hierarchy(&self) -> Hierarchy

Get the hierarchy associated with the verification ticket.

source§

fn digest(&self) -> &[u8]

Get the digest associated with the verification ticket.

source§

impl TryFrom<CreationTicket> for TPMT_TK_CREATION

§

type Error = Error

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

fn try_from(ticket: CreationTicket) -> Result<Self>

Performs the conversion.
source§

impl TryFrom<TPMT_TK_CREATION> for CreationTicket

§

type Error = Error

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

fn try_from(tss_ticket: TPMT_TK_CREATION) -> Result<Self>

Performs the conversion.

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere 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§

default 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 Twhere 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, U> TryFrom<U> for Twhere 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 Twhere 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.