#[repr(C)]pub struct Params {
pub curve: usize,
pub public: *const u8,
pub x: *mut u8,
pub y: *mut u8,
}Expand description
Parameters of export
Fields§
§curve: usizeThe curve.
public: *const u8The public key.
x: *mut u8The x coordinate in big-endian.
y: *mut u8The y coordinate in big-endian.
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