pub enum P256Point {
NonInf(Affine),
AtInfinity,
}
Variants§
Implementations§
Trait Implementations§
source§impl From<(P256FieldElement, P256FieldElement)> for P256Point
impl From<(P256FieldElement, P256FieldElement)> for P256Point
source§impl Ord for P256Point
impl Ord for P256Point
source§impl PartialEq for P256Point
impl PartialEq for P256Point
source§impl PartialOrd for P256Point
impl PartialOrd for P256Point
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for P256Point
impl Eq for P256Point
impl StructuralPartialEq for P256Point
Auto Trait Implementations§
impl Freeze for P256Point
impl RefUnwindSafe for P256Point
impl Send for P256Point
impl Sync for P256Point
impl Unpin for P256Point
impl UnwindSafe for P256Point
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