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