#[repr(C)]pub struct poly1305_state {
pub r: [ulong32; 5],
pub h: [ulong32; 5],
pub pad: [ulong32; 4],
pub leftover: c_ulong,
pub buffer: [c_uchar; 16],
pub final_: c_int,
}
Fields§
§r: [ulong32; 5]
§h: [ulong32; 5]
§pad: [ulong32; 4]
§leftover: c_ulong
§buffer: [c_uchar; 16]
§final_: c_int
Trait Implementations§
Source§impl Clone for poly1305_state
impl Clone for poly1305_state
Source§impl Debug for poly1305_state
impl Debug for poly1305_state
impl Copy for poly1305_state
Auto Trait Implementations§
impl Freeze for poly1305_state
impl RefUnwindSafe for poly1305_state
impl Send for poly1305_state
impl Sync for poly1305_state
impl Unpin for poly1305_state
impl UnwindSafe for poly1305_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