#[repr(C)]pub struct atcac_sha2_256_ctx {
pub pad: [u32; 48],
}Fields§
§pad: [u32; 48]!< Filler value to make sure the actual implementation has enough room to store its context. uint32_t is used to remove some alignment warnings.
Trait Implementations§
Source§impl Clone for atcac_sha2_256_ctx
impl Clone for atcac_sha2_256_ctx
Source§fn clone(&self) -> atcac_sha2_256_ctx
fn clone(&self) -> atcac_sha2_256_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 moreimpl Copy for atcac_sha2_256_ctx
Auto Trait Implementations§
impl Freeze for atcac_sha2_256_ctx
impl RefUnwindSafe for atcac_sha2_256_ctx
impl Send for atcac_sha2_256_ctx
impl Sync for atcac_sha2_256_ctx
impl Unpin for atcac_sha2_256_ctx
impl UnwindSafe for atcac_sha2_256_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