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