#[repr(C)]pub struct poly1305_context {
pub r: [u32; 4],
pub s: [u32; 4],
pub acc: [u32; 5],
pub queue: [u8; 16],
pub queue_len: usize,
}Fields§
§r: [u32; 4]§s: [u32; 4]§acc: [u32; 5]§queue: [u8; 16]§queue_len: usizeTrait Implementations§
Source§impl Clone for poly1305_context
impl Clone for poly1305_context
Source§fn clone(&self) -> poly1305_context
fn clone(&self) -> poly1305_context
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 Default for poly1305_context
impl Default for poly1305_context
Source§fn default() -> poly1305_context
fn default() -> poly1305_context
Returns the “default value” for a type. Read more
impl Copy for poly1305_context
Auto Trait Implementations§
impl Freeze for poly1305_context
impl RefUnwindSafe for poly1305_context
impl Send for poly1305_context
impl Sync for poly1305_context
impl Unpin for poly1305_context
impl UnwindSafe for poly1305_context
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