pub struct TpmClearControlCommand {
pub handles: [TpmHandle; 1],
pub disable: TpmiYesNo,
}Fields§
§handles: [TpmHandle; 1]§disable: TpmiYesNoImplementations§
Source§impl TpmClearControlCommand
impl TpmClearControlCommand
Sourcepub fn cast_frame(buf: &[u8]) -> TpmResult<&TpmCommand>
pub fn cast_frame(buf: &[u8]) -> TpmResult<&TpmCommand>
Casts a command frame into a typed wire view for this command.
§Errors
Returns Err(TpmError) when the frame is malformed or
has a different command code.
Sourcepub fn cast_frame_mut(buf: &mut [u8]) -> TpmResult<&mut TpmCommand>
pub fn cast_frame_mut(buf: &mut [u8]) -> TpmResult<&mut TpmCommand>
Casts a mutable command frame into a typed mutable wire view for this command.
§Errors
Returns Err(TpmError) when the frame is malformed or
has a different command code.
Trait Implementations§
Source§impl Clone for TpmClearControlCommand
impl Clone for TpmClearControlCommand
Source§fn clone(&self) -> TpmClearControlCommand
fn clone(&self) -> TpmClearControlCommand
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 TpmClearControlCommand
Source§impl Debug for TpmClearControlCommand
impl Debug for TpmClearControlCommand
impl Eq for TpmClearControlCommand
Source§impl PartialEq for TpmClearControlCommand
impl PartialEq for TpmClearControlCommand
Source§fn eq(&self, other: &TpmClearControlCommand) -> bool
fn eq(&self, other: &TpmClearControlCommand) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TpmClearControlCommand
Source§impl TpmFrame for TpmClearControlCommand
impl TpmFrame for TpmClearControlCommand
Source§impl TpmHeader for TpmClearControlCommand
impl TpmHeader for TpmClearControlCommand
Source§impl TpmMarshal for TpmClearControlCommand
impl TpmMarshal for TpmClearControlCommand
Auto Trait Implementations§
impl Freeze for TpmClearControlCommand
impl RefUnwindSafe for TpmClearControlCommand
impl Send for TpmClearControlCommand
impl Sync for TpmClearControlCommand
impl Unpin for TpmClearControlCommand
impl UnsafeUnpin for TpmClearControlCommand
impl UnwindSafe for TpmClearControlCommand
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