#[repr(C)]pub struct aes_context {
pub nr: c_int,
pub rk: *mut u32,
pub buf: [u32; 68],
}Fields§
§nr: c_int§rk: *mut u32§buf: [u32; 68]Trait Implementations§
Source§impl Clone for aes_context
impl Clone for aes_context
Source§fn clone(&self) -> aes_context
fn clone(&self) -> aes_context
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 Default for aes_context
impl Default for aes_context
impl Copy for aes_context
Auto Trait Implementations§
impl Freeze for aes_context
impl RefUnwindSafe for aes_context
impl !Send for aes_context
impl !Sync for aes_context
impl Unpin for aes_context
impl UnwindSafe for aes_context
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