[][src]Enum autograd::EvalError

pub enum EvalError {
    OpError(OpError),
    Empty,
}

Error during tensor's evaluation.

Variants

OpError(OpError)

Error during Op's computation.

Empty

A value of tensor is empty.

For example, compute results of inplace ops (e.g. optimizers) are not available and are represented as Empty.

Trait Implementations

impl Debug for EvalError[src]

impl Display for EvalError[src]

impl Error for EvalError[src]

impl PartialEq<EvalError> for EvalError[src]

impl StructuralPartialEq for EvalError[src]

Auto Trait Implementations

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> ToString for T where
    T: Display + ?Sized
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,