#[repr(C)]pub struct crypt_data {
pub output: [c_char; 384],
pub setting: [c_char; 384],
pub input: [c_char; 512],
pub reserved: [c_char; 767],
pub initialized: c_char,
pub internal: [c_char; 30720],
}
Fields§
§output: [c_char; 384]
§setting: [c_char; 384]
§input: [c_char; 512]
§reserved: [c_char; 767]
§initialized: c_char
§internal: [c_char; 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 copy 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