pub type GuiResult<T> = Result<T, GuiError>;Expand description
Result type alias for GUI operations.
This type alias provides a convenient way to handle results from
GUI operations that can fail with GuiError.
Aliased Type§
pub enum GuiResult<T> {
Ok(T),
Err(GuiError),
}