[][src]Struct reverie::online::verifier::StreamingVerifier

pub struct StreamingVerifier<D: Domain, PI: Iterator<Item = Instruction<D::Scalar>>> { /* fields omitted */ }

Implementations

impl<D: Domain, PI: Iterator<Item = Instruction<D::Scalar>>> StreamingVerifier<D, PI>[src]

pub fn new(program: PI, proof: Proof<D>) -> Self[src]

pub async fn verify<'_>(
    self,
    bind: Option<&'_ [u8]>,
    proof: Receiver<Vec<u8>>
) -> Result<Output<D>, String>
[src]

Auto Trait Implementations

impl<D, PI> RefUnwindSafe for StreamingVerifier<D, PI> where
    D: RefUnwindSafe,
    PI: RefUnwindSafe

impl<D, PI> Send for StreamingVerifier<D, PI> where
    PI: Send

impl<D, PI> Sync for StreamingVerifier<D, PI> where
    PI: Sync

impl<D, PI> Unpin for StreamingVerifier<D, PI> where
    D: Unpin,
    PI: Unpin

impl<D, PI> UnwindSafe for StreamingVerifier<D, PI> where
    D: UnwindSafe,
    PI: 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> From<T> for T[src]

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,