#[repr(C)]pub struct Params {
pub private: *const u8,
pub message: *const u8,
pub message_len: usize,
pub r: *mut u8,
pub s: *mut u8,
}Expand description
Parameters of sign
Fields§
§private: *const u8The private key.
message: *const u8The message.
message_len: usizeThe message length (in bytes).
r: *mut u8The first part of the signature.
s: *mut u8The second part of the signature.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Params
impl RefUnwindSafe for Params
impl !Send for Params
impl !Sync for Params
impl Unpin for Params
impl UnwindSafe for Params
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