Struct cry::primitive::point::Point [−][src]
Point.
Implementations
impl<P: DisLogPoint> Point<P>[src]
Trait Implementations
impl<'a, 'b, P: DisLogPoint> Add<&'b Point<P>> for &'a Point<P>[src]
type Output = Point<P>
The resulting type after applying the + operator.
fn add(self, rhs: &'b Point<P>) -> Point<P>[src]
impl<'a, 'b, P: DisLogPoint> Add<&'b Point<P>> for Point<P>[src]
type Output = Point<P>
The resulting type after applying the + operator.
fn add(self, rhs: &'b Point<P>) -> Point<P>[src]
impl<'a, 'b, P: DisLogPoint> Add<Point<P>> for &'a Point<P>[src]
type Output = Point<P>
The resulting type after applying the + operator.
fn add(self, rhs: Point<P>) -> Point<P>[src]
impl<'a, 'b, P: DisLogPoint> Add<Point<P>> for Point<P>[src]
type Output = Point<P>
The resulting type after applying the + operator.
fn add(self, rhs: Point<P>) -> Point<P>[src]
impl<'a, 'b, P: DisLogPoint> AddAssign<&'b Point<P>> for Point<P>[src]
fn add_assign(&mut self, rhs: &'b Point<P>)[src]
impl<P: DisLogPoint> Bytes for Point<P>[src]
type OutputSize = P::OutputSize
fn to_bytes(&self) -> Output<Self>[src]
fn from_bytes(data: Output<Self>) -> Self[src]
impl<P: Clone + DisLogPoint> Clone for Point<P>[src]
impl<P: Debug + DisLogPoint> Debug for Point<P>[src]
impl<P: Eq + DisLogPoint> Eq for Point<P>[src]
impl<'a, 'b, S: ScalarNumber, P: DisLogPoint<Scalar = S>> Mul<&'b Point<P>> for &'a Scalar<S>[src]
type Output = Point<P>
The resulting type after applying the * operator.
fn mul(self, rhs: &'b Point<P>) -> Point<P>[src]
impl<'a, 'b, S: ScalarNumber, P: DisLogPoint<Scalar = S>> Mul<&'b Point<P>> for Scalar<S>[src]
type Output = Point<P>
The resulting type after applying the * operator.
fn mul(self, rhs: &'b Point<P>) -> Point<P>[src]
impl<'a, 'b, S: ScalarNumber, P: DisLogPoint<Scalar = S>> Mul<&'b Scalar<S>> for &'a Point<P>[src]
type Output = Point<P>
The resulting type after applying the * operator.
fn mul(self, rhs: &'b Scalar<S>) -> Point<P>[src]
impl<'a, 'b, S: ScalarNumber, P: DisLogPoint<Scalar = S>> Mul<&'b Scalar<S>> for Point<P>[src]
type Output = Point<P>
The resulting type after applying the * operator.
fn mul(self, rhs: &'b Scalar<S>) -> Point<P>[src]
impl<'a, 'b, S: ScalarNumber, P: DisLogPoint<Scalar = S>> Mul<Point<P>> for &'a Scalar<S>[src]
type Output = Point<P>
The resulting type after applying the * operator.
fn mul(self, rhs: Point<P>) -> Point<P>[src]
impl<'a, 'b, S: ScalarNumber, P: DisLogPoint<Scalar = S>> Mul<Point<P>> for Scalar<S>[src]
type Output = Point<P>
The resulting type after applying the * operator.
fn mul(self, rhs: Point<P>) -> Point<P>[src]
impl<'a, 'b, S: ScalarNumber, P: DisLogPoint<Scalar = S>> Mul<Scalar<S>> for &'a Point<P>[src]
type Output = Point<P>
The resulting type after applying the * operator.
fn mul(self, rhs: Scalar<S>) -> Point<P>[src]
impl<'a, 'b, S: ScalarNumber, P: DisLogPoint<Scalar = S>> Mul<Scalar<S>> for Point<P>[src]
type Output = Point<P>
The resulting type after applying the * operator.
fn mul(self, rhs: Scalar<S>) -> Point<P>[src]
impl<'a, 'b, P: DisLogPoint<Scalar = S>, S: ScalarNumber> MulAssign<&'b Scalar<S>> for Point<P>[src]
fn mul_assign(&mut self, rhs: &'b Scalar<S>)[src]
impl<P: DisLogPoint> Neg for Point<P>[src]
impl<P: DisLogPoint> PartialEq<Point<P>> for Point<P>[src]
impl<P: DisLogPoint> StructuralEq for Point<P>[src]
impl<'a, 'b, P: DisLogPoint> Sub<&'b Point<P>> for &'a Point<P>[src]
type Output = Point<P>
The resulting type after applying the - operator.
fn sub(self, rhs: &'b Point<P>) -> Point<P>[src]
impl<'a, 'b, P: DisLogPoint> Sub<&'b Point<P>> for Point<P>[src]
type Output = Point<P>
The resulting type after applying the - operator.
fn sub(self, rhs: &'b Point<P>) -> Point<P>[src]
impl<'a, 'b, P: DisLogPoint> Sub<Point<P>> for &'a Point<P>[src]
type Output = Point<P>
The resulting type after applying the - operator.
fn sub(self, rhs: Point<P>) -> Point<P>[src]
impl<'a, 'b, P: DisLogPoint> Sub<Point<P>> for Point<P>[src]
type Output = Point<P>
The resulting type after applying the - operator.
fn sub(self, rhs: Point<P>) -> Point<P>[src]
impl<'a, 'b, P: DisLogPoint> SubAssign<&'b Point<P>> for Point<P>[src]
fn sub_assign(&mut self, rhs: &'b Point<P>)[src]
Auto Trait Implementations
impl<P> RefUnwindSafe for Point<P> where
P: RefUnwindSafe,
P: RefUnwindSafe,
impl<P> Send for Point<P> where
P: Send,
P: Send,
impl<P> Sync for Point<P> where
P: Sync,
P: Sync,
impl<P> Unpin for Point<P> where
P: Unpin,
P: Unpin,
impl<P> UnwindSafe for Point<P> where
P: UnwindSafe,
P: UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,