[][src]Struct zkp_stark::VerifierChannel

pub struct VerifierChannel {
    pub coin: PublicCoin,
    pub proof: Vec<u8>,
    // some fields omitted
}

Fields

coin: PublicCoinproof: Vec<u8>

Methods

impl VerifierChannel[src]

pub fn new(proof: Vec<u8>) -> Self[src]

pub fn initialize(&mut self, seed: &[u8])[src]

pub fn read_without_replay(&self, length: usize) -> &[u8][src]

pub fn at_end(self) -> bool[src]

Trait Implementations

impl Eq for VerifierChannel[src]

impl Default for VerifierChannel[src]

impl Clone for VerifierChannel[src]

impl PartialEq<VerifierChannel> for VerifierChannel[src]

impl Debug for VerifierChannel[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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

type Error = Infallible

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.

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

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

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

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,