pub struct EncryptedReturnParameters {
pub status: Status,
pub encrypted_data: EncryptedBlock,
}
Expand description
Parameters returned by the LE Encrypt command.
Fields§
§status: Status
Did the command fail, and if so, how?
encrypted_data: EncryptedBlock
Encrypted data block.
The most significant octet (last) of the block corresponds to out[0]
using the notation
specified in FIPS 197.
Trait Implementations§
Source§impl Clone for EncryptedReturnParameters
impl Clone for EncryptedReturnParameters
Source§fn clone(&self) -> EncryptedReturnParameters
fn clone(&self) -> EncryptedReturnParameters
Returns a duplicate of the value. Read more
1.0.0 · 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 EncryptedReturnParameters
impl Debug for EncryptedReturnParameters
impl Copy for EncryptedReturnParameters
Auto Trait Implementations§
impl Freeze for EncryptedReturnParameters
impl RefUnwindSafe for EncryptedReturnParameters
impl Send for EncryptedReturnParameters
impl Sync for EncryptedReturnParameters
impl Unpin for EncryptedReturnParameters
impl UnwindSafe for EncryptedReturnParameters
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