Type Alias hyprland::Result

source ·
pub type Result<T> = Result<T, HyprError>;
Expand description

This type provides the result type used everywhere in Hyprland-rs

Aliased Type§

enum Result<T> {
    Ok(T),
    Err(HyprError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(HyprError)

Contains the error value