Type Alias GraphicsServerConstructorResult

Source
pub type GraphicsServerConstructorResult = Result<(Window, SharedGraphicsServer), FrameworkError>;
Expand description

A result returned by a graphics server constructor.

Aliased Type§

pub enum GraphicsServerConstructorResult {
    Ok((Window, Rc<dyn GraphicsServer>)),
    Err(FrameworkError),
}

Variants§

§1.0.0

Ok((Window, Rc<dyn GraphicsServer>))

Contains the success value

§1.0.0

Err(FrameworkError)

Contains the error value