Skip to main content

PerlResult

Type Alias PerlResult 

Source
pub type PerlResult<T> = Result<T, PerlError>;

Aliased Type§

pub enum PerlResult<T> {
    Ok(T),
    Err(PerlError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(PerlError)

Contains the error value