Struct solana_zk_token_sdk::curve25519::edwards::PodEdwardsPoint
source · [−]Tuple Fields
0: [u8; 32]
Trait Implementations
sourceimpl Clone for PodEdwardsPoint
impl Clone for PodEdwardsPoint
sourcefn clone(&self) -> PodEdwardsPoint
fn clone(&self) -> PodEdwardsPoint
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for PodEdwardsPoint
impl Debug for PodEdwardsPoint
sourceimpl Default for PodEdwardsPoint
impl Default for PodEdwardsPoint
sourcefn default() -> PodEdwardsPoint
fn default() -> PodEdwardsPoint
Returns the “default value” for a type. Read more
sourceimpl From<&EdwardsPoint> for PodEdwardsPoint
impl From<&EdwardsPoint> for PodEdwardsPoint
sourcefn from(point: &EdwardsPoint) -> Self
fn from(point: &EdwardsPoint) -> Self
Converts to this type from the input type.
sourceimpl GroupOperations for PodEdwardsPoint
impl GroupOperations for PodEdwardsPoint
sourceimpl MultiScalarMultiplication for PodEdwardsPoint
impl MultiScalarMultiplication for PodEdwardsPoint
type Scalar = PodScalar
type Point = PodEdwardsPoint
sourceimpl PartialEq<PodEdwardsPoint> for PodEdwardsPoint
impl PartialEq<PodEdwardsPoint> for PodEdwardsPoint
sourcefn eq(&self, other: &PodEdwardsPoint) -> bool
fn eq(&self, other: &PodEdwardsPoint) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &PodEdwardsPoint) -> bool
fn ne(&self, other: &PodEdwardsPoint) -> bool
This method tests for !=
.
sourceimpl PointValidation for PodEdwardsPoint
impl PointValidation for PodEdwardsPoint
type Point = PodEdwardsPoint
sourcefn validate_point(&self) -> bool
fn validate_point(&self) -> bool
Verifies if a byte representation of a curve point lies in the curve.
sourceimpl TryFrom<&PodEdwardsPoint> for EdwardsPoint
impl TryFrom<&PodEdwardsPoint> for EdwardsPoint
type Error = Curve25519Error
type Error = Curve25519Error
The type returned in the event of a conversion error.
sourcefn try_from(pod: &PodEdwardsPoint) -> Result<Self, Self::Error>
fn try_from(pod: &PodEdwardsPoint) -> Result<Self, Self::Error>
Performs the conversion.
impl Copy for PodEdwardsPoint
impl Eq for PodEdwardsPoint
impl Pod for PodEdwardsPoint
impl StructuralEq for PodEdwardsPoint
impl StructuralPartialEq for PodEdwardsPoint
Auto Trait Implementations
impl RefUnwindSafe for PodEdwardsPoint
impl Send for PodEdwardsPoint
impl Sync for PodEdwardsPoint
impl Unpin for PodEdwardsPoint
impl UnwindSafe for PodEdwardsPoint
Blanket Implementations
impl<T> AbiExample for T
impl<T> AbiExample for T
default fn example() -> T
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> CheckedBitPattern for T where
T: AnyBitPattern,
impl<T> CheckedBitPattern for T where
T: AnyBitPattern,
type Bits = T
type Bits = T
Self
must have the same layout as the specified Bits
except for
the possible invalid bit patterns being checked during is_valid_bit_pattern
. Read more
sourcefn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret bits
as &Self
.