Type Alias EGSResult

Source
pub type EGSResult<T> = Result<T, EGSError>;

Aliased Type§

pub enum EGSResult<T> {
    Ok(T),
    Err(EGSError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(EGSError)

Contains the error value