Skip to main content

CnnResult

Type Alias CnnResult 

Source
pub type CnnResult<T> = Result<T, CnnError>;
Expand description

Result type for CNN operations.

Aliased Type§

pub enum CnnResult<T> {
    Ok(T),
    Err(CnnError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(CnnError)

Contains the error value