#[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 (const: unstable) · 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
Source§impl Ord for crypt_data
impl Ord for crypt_data
Source§fn cmp(&self, other: &crypt_data) -> Ordering
fn cmp(&self, other: &crypt_data) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for crypt_data
impl PartialEq for crypt_data
Source§fn eq(&self, other: &crypt_data) -> bool
fn eq(&self, other: &crypt_data) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for crypt_data
impl PartialOrd for crypt_data
impl Copy for crypt_data
impl Eq for crypt_data
impl StructuralPartialEq 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 UnsafeUnpin 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