#[repr(C)]pub struct chacha20poly1305_state {
pub poly: poly1305_state,
pub chacha: chacha_state,
pub aadlen: ulong64,
pub ctlen: ulong64,
pub aadflg: c_int,
}Fields§
§poly: poly1305_state§chacha: chacha_state§aadlen: ulong64§ctlen: ulong64§aadflg: c_intTrait Implementations§
Source§impl Clone for chacha20poly1305_state
impl Clone for chacha20poly1305_state
impl Copy for chacha20poly1305_state
Auto Trait Implementations§
impl Freeze for chacha20poly1305_state
impl RefUnwindSafe for chacha20poly1305_state
impl Send for chacha20poly1305_state
impl Sync for chacha20poly1305_state
impl Unpin for chacha20poly1305_state
impl UnwindSafe for chacha20poly1305_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