pub struct P384AffinePoint {
pub x: [u8; 48],
pub y: [u8; 48],
}Expand description
Canonical P-384 affine point: big-endian (x, y), uncompressed.
This is the portable representation that crosses the backend boundary.
Fields§
§x: [u8; 48]X coordinate, big-endian, 48 bytes.
y: [u8; 48]Y coordinate, big-endian, 48 bytes.
Trait Implementations§
Source§impl Clone for P384AffinePoint
impl Clone for P384AffinePoint
Source§fn clone(&self) -> P384AffinePoint
fn clone(&self) -> P384AffinePoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for P384AffinePoint
Source§impl Debug for P384AffinePoint
impl Debug for P384AffinePoint
Source§impl Default for P384AffinePoint
impl Default for P384AffinePoint
impl Eq for P384AffinePoint
Source§impl PartialEq for P384AffinePoint
impl PartialEq for P384AffinePoint
impl StructuralPartialEq for P384AffinePoint
Auto Trait Implementations§
impl Freeze for P384AffinePoint
impl RefUnwindSafe for P384AffinePoint
impl Send for P384AffinePoint
impl Sync for P384AffinePoint
impl Unpin for P384AffinePoint
impl UnsafeUnpin for P384AffinePoint
impl UnwindSafe for P384AffinePoint
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