[][src]Enum fancy_garbling::error::EvaluatorError

pub enum EvaluatorError {
    NotEnoughGarblerInputs,
    NotEnoughEvaluatorInputs,
    DecodingFailed,
    CommunicationError(String),
    FancyError(FancyError),
}

Errors from the evaluator.

Variants

NotEnoughGarblerInputs

Not enough garbler inputs provided.

NotEnoughEvaluatorInputs

Not enough evaluator inputs provided.

DecodingFailed

Decoding failed.

CommunicationError(String)

A communication error has occurred.

FancyError(FancyError)

A fancy error has occurred.

Trait Implementations

impl From<FancyError> for EvaluatorError[src]

impl From<Error> for EvaluatorError[src]

impl From<RecvError> for EvaluatorError[src]

impl Display for EvaluatorError[src]

impl Debug for EvaluatorError[src]

Auto Trait Implementations

impl Send for EvaluatorError

impl Sync for EvaluatorError

Blanket Implementations

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

impl<T> ToString for T where
    T: Display + ?Sized
[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<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<T> FromCast<T> for T

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

impl<T> FromBits<T> for T

impl<T> Same<T> for T

type Output = T

Should always be Self