[][src]Struct bulletproofs::util::Poly6

pub struct Poly6 {
    pub t1: Scalar,
    pub t2: Scalar,
    pub t3: Scalar,
    pub t4: Scalar,
    pub t5: Scalar,
    pub t6: Scalar,
}

Represents a degree-6 scalar polynomial, without the zeroth degree \(a \cdot x + b \cdot x^2 + c \cdot x^3 + d \cdot x^4 + e \cdot x^5 + f \cdot x^6\)

Fields

t1: Scalart2: Scalart3: Scalart4: Scalart5: Scalart6: Scalar

Methods

impl Poly6[src]

pub fn eval(&self, x: Scalar) -> Scalar[src]

Trait Implementations

impl Drop for Poly6[src]

Auto Trait Implementations

impl RefUnwindSafe for Poly6

impl Send for Poly6

impl Sync for Poly6

impl Unpin for Poly6

impl UnwindSafe for Poly6

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> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.