RowResult

Type Alias RowResult 

Source
pub type RowResult<T> = Result<T, RowError>;

Aliased Type§

pub enum RowResult<T> {
    Ok(T),
    Err(RowError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(RowError)

Contains the error value