Skip to main content

ImplementationResult

Type Alias ImplementationResult 

Source
pub type ImplementationResult<'a, T> = Result<T, GLLImplementationError<'a>>;
Expand description

Result for something that can only have issues in the implementation.

Aliased Type§

pub enum ImplementationResult<'a, T> {
    Ok(T),
    Err(GLLImplementationError<'a>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(GLLImplementationError<'a>)

Contains the error value