#[repr(C)]pub struct crypt_data {
pub output: [i8; 384],
pub setting: [i8; 384],
pub input: [i8; 512],
pub reserved: [i8; 767],
pub initialized: i8,
pub internal: [i8; 30720],
}Fields§
§output: [i8; 384]§setting: [i8; 384]§input: [i8; 512]§reserved: [i8; 767]§initialized: i8§internal: [i8; 30720]Trait Implementations§
Source§impl Clone for crypt_data
impl Clone for crypt_data
Source§fn clone(&self) -> crypt_data
fn clone(&self) -> crypt_data
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 crypt_data
impl Debug for crypt_data
impl Copy for crypt_data
Auto Trait Implementations§
impl Freeze for crypt_data
impl RefUnwindSafe for crypt_data
impl Send for crypt_data
impl Sync for crypt_data
impl Unpin for crypt_data
impl UnwindSafe for crypt_data
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