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§
Ok((Window, Rc<dyn GraphicsServer>))
Contains the success value
Err(FrameworkError)
Contains the error value