pub struct TpmActSetTimeoutResponse {
pub handles: [TpmHandle; 0],
}Fields§
§handles: [TpmHandle; 0]Implementations§
Source§impl TpmActSetTimeoutResponse
impl TpmActSetTimeoutResponse
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 TpmActSetTimeoutResponse
impl Clone for TpmActSetTimeoutResponse
Source§fn clone(&self) -> TpmActSetTimeoutResponse
fn clone(&self) -> TpmActSetTimeoutResponse
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 moreimpl Copy for TpmActSetTimeoutResponse
Source§impl Debug for TpmActSetTimeoutResponse
impl Debug for TpmActSetTimeoutResponse
Source§impl Default for TpmActSetTimeoutResponse
impl Default for TpmActSetTimeoutResponse
Source§fn default() -> TpmActSetTimeoutResponse
fn default() -> TpmActSetTimeoutResponse
Returns the “default value” for a type. Read more
impl Eq for TpmActSetTimeoutResponse
Source§impl PartialEq for TpmActSetTimeoutResponse
impl PartialEq for TpmActSetTimeoutResponse
Source§fn eq(&self, other: &TpmActSetTimeoutResponse) -> bool
fn eq(&self, other: &TpmActSetTimeoutResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TpmActSetTimeoutResponse
Source§impl TpmFrame for TpmActSetTimeoutResponse
impl TpmFrame for TpmActSetTimeoutResponse
Source§impl TpmHeader for TpmActSetTimeoutResponse
impl TpmHeader for TpmActSetTimeoutResponse
Auto Trait Implementations§
impl Freeze for TpmActSetTimeoutResponse
impl RefUnwindSafe for TpmActSetTimeoutResponse
impl Send for TpmActSetTimeoutResponse
impl Sync for TpmActSetTimeoutResponse
impl Unpin for TpmActSetTimeoutResponse
impl UnsafeUnpin for TpmActSetTimeoutResponse
impl UnwindSafe for TpmActSetTimeoutResponse
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