#[repr(C)]pub struct chacha_state {
pub input: [ulong32; 16],
pub kstream: [c_uchar; 64],
pub ksleft: c_ulong,
pub ivlen: c_ulong,
pub rounds: c_int,
}Fields§
§input: [ulong32; 16]§kstream: [c_uchar; 64]§ksleft: c_ulong§ivlen: c_ulong§rounds: c_intTrait Implementations§
Source§impl Clone for chacha_state
impl Clone for chacha_state
impl Copy for chacha_state
Auto Trait Implementations§
impl Freeze for chacha_state
impl RefUnwindSafe for chacha_state
impl Send for chacha_state
impl Sync for chacha_state
impl Unpin for chacha_state
impl UnwindSafe for chacha_state
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