Struct tss_esapi::utils::PcrBank [−][src]
Struct for holding PcrSlots and their corresponding values.
Implementations
impl PcrBank[src]
pub fn pcr_value(&self, pcr_slot: PcrSlot) -> Option<&Digest>[src]
Function for retrieving a pcr value corresponding to a pcr slot.
pub fn len(&self) -> usize[src]
Function for retrieiving the number of pcr slot values in the bank.
pub fn is_empty(&self) -> bool[src]
Returns true if there are no pcr slot values in the bank.
Trait Implementations
impl Clone for PcrBank[src]
impl Debug for PcrBank[src]
impl Eq for PcrBank[src]
impl<'a> IntoIterator for &'a PcrBank[src]
type Item = (&'a PcrSlot, &'a Digest)
The type of the elements being iterated over.
type IntoIter = Iter<'a, PcrSlot, Digest>
Which kind of iterator are we turning this into?
fn into_iter(self) -> Self::IntoIter[src]
impl PartialEq<PcrBank> for PcrBank[src]
impl StructuralEq for PcrBank[src]
impl StructuralPartialEq for PcrBank[src]
Auto Trait Implementations
impl RefUnwindSafe for PcrBank
impl Send for PcrBank
impl Sync for PcrBank
impl Unpin for PcrBank
impl UnwindSafe for PcrBank
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>,