[][src]Struct curve25519_dalek::window::NafLookupTable8

pub(crate) struct NafLookupTable8<T>(pub(crate) [T; 64]);

Holds stuff up to 8.

Methods

impl<T: Copy> NafLookupTable8<T>[src]

pub fn select(&self, x: usize) -> T[src]

Trait Implementations

impl<T: Clone> Clone for NafLookupTable8<T>[src]

impl<T: Copy> Copy for NafLookupTable8<T>[src]

impl<T: Debug> Debug for NafLookupTable8<T>[src]

impl<'a> From<&'a EdwardsPoint> for NafLookupTable8<ProjectiveNielsPoint>[src]

impl<'a> From<&'a EdwardsPoint> for NafLookupTable8<AffineNielsPoint>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for NafLookupTable8<T> where
    T: RefUnwindSafe

impl<T> Send for NafLookupTable8<T> where
    T: Send

impl<T> Sync for NafLookupTable8<T> where
    T: Sync

impl<T> Unpin for NafLookupTable8<T> where
    T: Unpin

impl<T> UnwindSafe for NafLookupTable8<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T, U> Cast<U> for T where
    U: FromCast<T>, 

impl<T> From<T> for T[src]

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.