devela::all

Type Alias LayoutResult

Source
pub type LayoutResult<T> = Result<T, LayoutError>;
Available on crate feature layout only.
Expand description

⚖️ A layout-related result.

Aliased Type§

enum LayoutResult<T> {
    Ok(T),
    Err(LayoutError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(LayoutError)

Contains the error value