#[repr(C)]pub struct ocrypto_poly1305_ctx {
pub h: [u32; 5],
pub r: [u32; 4],
pub c: [u32; 4],
pub buffer: [u8; 16],
pub length: u8,
}Expand description
@cond
Fields§
§h: [u32; 5]§r: [u32; 4]§c: [u32; 4]§buffer: [u8; 16]§length: u8Trait Implementations§
Source§impl Clone for ocrypto_poly1305_ctx
impl Clone for ocrypto_poly1305_ctx
Source§fn clone(&self) -> ocrypto_poly1305_ctx
fn clone(&self) -> ocrypto_poly1305_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_poly1305_ctx
impl Debug for ocrypto_poly1305_ctx
impl Copy for ocrypto_poly1305_ctx
Auto Trait Implementations§
impl Freeze for ocrypto_poly1305_ctx
impl RefUnwindSafe for ocrypto_poly1305_ctx
impl Send for ocrypto_poly1305_ctx
impl Sync for ocrypto_poly1305_ctx
impl Unpin for ocrypto_poly1305_ctx
impl UnwindSafe for ocrypto_poly1305_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