#[repr(C)]pub struct SignPrecomp {
pub r: [u32; 8],
pub k_inv: [u32; 8],
}Expand description
Sign precomputation state.
The content shall be treated as opaque to the API user and shall not be inspected or modified.
Fields§
§r: [u32; 8]§k_inv: [u32; 8]Trait Implementations§
Source§impl Clone for SignPrecomp
impl Clone for SignPrecomp
Source§fn clone(&self) -> SignPrecomp
fn clone(&self) -> SignPrecomp
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 SignPrecomp
impl Debug for SignPrecomp
impl Copy for SignPrecomp
Auto Trait Implementations§
impl Freeze for SignPrecomp
impl RefUnwindSafe for SignPrecomp
impl Send for SignPrecomp
impl Sync for SignPrecomp
impl Unpin for SignPrecomp
impl UnwindSafe for SignPrecomp
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