pub(crate) struct NafLookupTable5<T>(pub(crate) [T; 8]);Expand description
Holds odd multiples 1A, 3A, …, 15A of a point A.
Tuple Fields§
§0: [T; 8]Implementations§
Trait Implementations§
Source§impl<T: Clone> Clone for NafLookupTable5<T>
impl<T: Clone> Clone for NafLookupTable5<T>
Source§fn clone(&self) -> NafLookupTable5<T>
fn clone(&self) -> NafLookupTable5<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T: Debug> Debug for NafLookupTable5<T>
impl<T: Debug> Debug for NafLookupTable5<T>
Source§impl<'a> From<&'a EdwardsPoint> for NafLookupTable5<AffineNielsPoint>
impl<'a> From<&'a EdwardsPoint> for NafLookupTable5<AffineNielsPoint>
Source§fn from(A: &'a EdwardsPoint) -> Self
fn from(A: &'a EdwardsPoint) -> Self
Converts to this type from the input type.
Source§impl From<&EdwardsPoint> for NafLookupTable5<CachedPoint>
impl From<&EdwardsPoint> for NafLookupTable5<CachedPoint>
Source§fn from(point: &EdwardsPoint) -> Self
fn from(point: &EdwardsPoint) -> Self
Converts to this type from the input type.
Source§impl<'a> From<&'a EdwardsPoint> for NafLookupTable5<ProjectiveNielsPoint>
impl<'a> From<&'a EdwardsPoint> for NafLookupTable5<ProjectiveNielsPoint>
Source§fn from(A: &'a EdwardsPoint) -> Self
fn from(A: &'a EdwardsPoint) -> Self
Converts to this type from the input type.
impl<T: Copy> Copy for NafLookupTable5<T>
Auto Trait Implementations§
impl<T> Freeze for NafLookupTable5<T>where
T: Freeze,
impl<T> RefUnwindSafe for NafLookupTable5<T>where
T: RefUnwindSafe,
impl<T> Send for NafLookupTable5<T>where
T: Send,
impl<T> Sync for NafLookupTable5<T>where
T: Sync,
impl<T> Unpin for NafLookupTable5<T>where
T: Unpin,
impl<T> UnwindSafe for NafLookupTable5<T>where
T: UnwindSafe,
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