#[repr(C)]pub struct des_context_t {
pub round_key_lo: [c_uint; 16],
pub round_key_hi: [c_uint; 16],
pub round: c_int,
}
Fields§
§round_key_lo: [c_uint; 16]
§round_key_hi: [c_uint; 16]
§round: c_int
Trait Implementations§
Source§impl Clone for des_context_t
impl Clone for des_context_t
Source§fn clone(&self) -> des_context_t
fn clone(&self) -> des_context_t
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 des_context_t
impl Debug for des_context_t
impl Copy for des_context_t
Auto Trait Implementations§
impl Freeze for des_context_t
impl RefUnwindSafe for des_context_t
impl Send for des_context_t
impl Sync for des_context_t
impl Unpin for des_context_t
impl UnwindSafe for des_context_t
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