Enum autograd::op::ComputeError [] [src]

pub enum ComputeError {
    Delegate {
        to: usize,
    },
    BadInput(String),
    NoOutput,
}

Variants

Computation finished correctly but delegates the result to its to th input.

Fields of Delegate

Could'nt compute output array because of bad inputs.

Computation finished correctly with no output

Trait Implementations

impl Clone for ComputeError
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ComputeError
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for ComputeError

impl Sync for ComputeError