Type Alias PResult

Source
pub type PResult<T> = Result<T, PermutationGeneratorError>;

Aliased Type§

pub enum PResult<T> {
    Ok(T),
    Err(PermutationGeneratorError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(PermutationGeneratorError)

Contains the error value