WindowResult

Type Alias WindowResult 

Source
pub type WindowResult<T> = Result<T, WindowError>;
Expand description

Result type for window operations.

Aliased Type§

pub enum WindowResult<T> {
    Ok(T),
    Err(WindowError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(WindowError)

Contains the error value