#[repr(C)]pub struct Params {
pub public: *const u8,
pub message: *const u8,
pub message_len: usize,
pub r: *const u8,
pub s: *const u8,
}Expand description
Parameters of verify
Fields§
§public: *const u8The public key.
message: *const u8The message.
message_len: usizeThe message length (in bytes).
r: *const u8The first part of the signature.
s: *const 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