#[repr(C)]pub struct poly1305_aes_ctx {
pub pctx: poly1305_ctx,
pub block: [u8; 16],
pub index: c_uint,
pub nonce: [u8; 16],
pub aes: aes128_ctx,
}
Fields§
§pctx: poly1305_ctx
§block: [u8; 16]
§index: c_uint
§nonce: [u8; 16]
§aes: aes128_ctx
Trait Implementations§
Source§impl Clone for poly1305_aes_ctx
impl Clone for poly1305_aes_ctx
Source§fn clone(&self) -> poly1305_aes_ctx
fn clone(&self) -> poly1305_aes_ctx
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 moreimpl Copy for poly1305_aes_ctx
Auto Trait Implementations§
impl Freeze for poly1305_aes_ctx
impl RefUnwindSafe for poly1305_aes_ctx
impl Send for poly1305_aes_ctx
impl Sync for poly1305_aes_ctx
impl Unpin for poly1305_aes_ctx
impl UnwindSafe for poly1305_aes_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