Type Alias SourceResult

Source
pub type SourceResult<T> = Result<T, SourceError>;
Expand description

Generic return type

Aliased Type§

pub enum SourceResult<T> {
    Ok(T),
    Err(SourceError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(SourceError)

Contains the error value