#[repr(C)]pub struct _ecdsa_verify_context {
pub s1: ecc_25519_work_t,
pub u2: ecc_int256_t,
pub r: ecc_int256_t,
}Expand description
Representation of a hash and signature for efficient checking against multiple public keys
Fields§
§s1: ecc_25519_work_t§u2: ecc_int256_t§r: ecc_int256_tTrait Implementations§
Source§impl Clone for _ecdsa_verify_context
impl Clone for _ecdsa_verify_context
Source§fn clone(&self) -> _ecdsa_verify_context
fn clone(&self) -> _ecdsa_verify_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 moreimpl Copy for _ecdsa_verify_context
Auto Trait Implementations§
impl Freeze for _ecdsa_verify_context
impl RefUnwindSafe for _ecdsa_verify_context
impl Send for _ecdsa_verify_context
impl Sync for _ecdsa_verify_context
impl Unpin for _ecdsa_verify_context
impl UnwindSafe for _ecdsa_verify_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