pub struct EncryptedBlock(pub [u8; 16]);
Expand description
Newtype for a 128-bit encrypted block of data.
Tuple Fields§
§0: [u8; 16]
Trait Implementations§
Source§impl Clone for EncryptedBlock
impl Clone for EncryptedBlock
Source§fn clone(&self) -> EncryptedBlock
fn clone(&self) -> EncryptedBlock
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 EncryptedBlock
impl Debug for EncryptedBlock
impl Copy for EncryptedBlock
Auto Trait Implementations§
impl Freeze for EncryptedBlock
impl RefUnwindSafe for EncryptedBlock
impl Send for EncryptedBlock
impl Sync for EncryptedBlock
impl Unpin for EncryptedBlock
impl UnwindSafe for EncryptedBlock
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