pub struct TpmHashSequenceStartResponse {
pub handles: [TpmHandle; 1],
}Fields§
§handles: [TpmHandle; 1]Implementations§
Source§impl TpmHashSequenceStartResponse
impl TpmHashSequenceStartResponse
Sourcepub fn cast_frame(buf: &[u8]) -> TpmResult<&TpmResponse>
pub fn cast_frame(buf: &[u8]) -> TpmResult<&TpmResponse>
Casts a response frame into a typed wire view for this response.
§Errors
Returns Err(TpmError) when the frame envelope is malformed.
Sourcepub fn cast_frame_mut(buf: &mut [u8]) -> TpmResult<&mut TpmResponse>
pub fn cast_frame_mut(buf: &mut [u8]) -> TpmResult<&mut TpmResponse>
Casts a mutable response frame into a typed mutable wire view for this response.
§Errors
Returns Err(TpmError) when the frame envelope is malformed.
Trait Implementations§
Source§impl Clone for TpmHashSequenceStartResponse
impl Clone for TpmHashSequenceStartResponse
Source§fn clone(&self) -> TpmHashSequenceStartResponse
fn clone(&self) -> TpmHashSequenceStartResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for TpmHashSequenceStartResponse
impl Debug for TpmHashSequenceStartResponse
Source§impl PartialEq for TpmHashSequenceStartResponse
impl PartialEq for TpmHashSequenceStartResponse
Source§fn eq(&self, other: &TpmHashSequenceStartResponse) -> bool
fn eq(&self, other: &TpmHashSequenceStartResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TpmSized for TpmHashSequenceStartResponse
impl TpmSized for TpmHashSequenceStartResponse
impl Copy for TpmHashSequenceStartResponse
impl Eq for TpmHashSequenceStartResponse
impl StructuralPartialEq for TpmHashSequenceStartResponse
Auto Trait Implementations§
impl Freeze for TpmHashSequenceStartResponse
impl RefUnwindSafe for TpmHashSequenceStartResponse
impl Send for TpmHashSequenceStartResponse
impl Sync for TpmHashSequenceStartResponse
impl Unpin for TpmHashSequenceStartResponse
impl UnsafeUnpin for TpmHashSequenceStartResponse
impl UnwindSafe for TpmHashSequenceStartResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more