pub struct TpmEccParametersResponse {
pub handles: [TpmHandle; 0],
pub parameters: TpmsAlgorithmDetailEcc,
}Fields§
§handles: [TpmHandle; 0]§parameters: TpmsAlgorithmDetailEccImplementations§
Source§impl TpmEccParametersResponse
impl TpmEccParametersResponse
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 TpmEccParametersResponse
impl Clone for TpmEccParametersResponse
Source§fn clone(&self) -> TpmEccParametersResponse
fn clone(&self) -> TpmEccParametersResponse
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 TpmEccParametersResponse
impl Debug for TpmEccParametersResponse
Source§impl PartialEq for TpmEccParametersResponse
impl PartialEq for TpmEccParametersResponse
Source§fn eq(&self, other: &TpmEccParametersResponse) -> bool
fn eq(&self, other: &TpmEccParametersResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TpmFrame for TpmEccParametersResponse
impl TpmFrame for TpmEccParametersResponse
Source§impl TpmHeader for TpmEccParametersResponse
impl TpmHeader for TpmEccParametersResponse
Source§impl TpmSized for TpmEccParametersResponse
impl TpmSized for TpmEccParametersResponse
impl Eq for TpmEccParametersResponse
impl StructuralPartialEq for TpmEccParametersResponse
Auto Trait Implementations§
impl Freeze for TpmEccParametersResponse
impl RefUnwindSafe for TpmEccParametersResponse
impl Send for TpmEccParametersResponse
impl Sync for TpmEccParametersResponse
impl Unpin for TpmEccParametersResponse
impl UnsafeUnpin for TpmEccParametersResponse
impl UnwindSafe for TpmEccParametersResponse
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