#[repr(C)]pub struct ocrypto_chacha20_ctx {
pub x: [u32; 16],
pub cipher: [u8; 64],
pub position: u8,
}Expand description
@cond
Fields§
§x: [u32; 16]§cipher: [u8; 64]§position: u8Trait Implementations§
Source§impl Clone for ocrypto_chacha20_ctx
impl Clone for ocrypto_chacha20_ctx
Source§fn clone(&self) -> ocrypto_chacha20_ctx
fn clone(&self) -> ocrypto_chacha20_ctx
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 ocrypto_chacha20_ctx
impl Debug for ocrypto_chacha20_ctx
impl Copy for ocrypto_chacha20_ctx
Auto Trait Implementations§
impl Freeze for ocrypto_chacha20_ctx
impl RefUnwindSafe for ocrypto_chacha20_ctx
impl Send for ocrypto_chacha20_ctx
impl Sync for ocrypto_chacha20_ctx
impl Unpin for ocrypto_chacha20_ctx
impl UnwindSafe for ocrypto_chacha20_ctx
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