Type Alias SqlResult

Source
pub type SqlResult<T> = Result<T, SqlErrorCode>;

Aliased Type§

pub enum SqlResult<T> {
    Ok(T),
    Err(Error<SqlErrorCode>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error<SqlErrorCode>)

Contains the error value