Skip to main content

GenerateResult

Type Alias GenerateResult 

Source
pub type GenerateResult<T> = Result<T, GenerateError>;
Expand description

Result type for generation operations.

Aliased Type§

pub enum GenerateResult<T> {
    Ok(T),
    Err(GenerateError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(GenerateError)

Contains the error value