pub type EventResult = Result<MaybeWindowAvailable, PlatformError>;Expand description
A type alias for the result of an event.
Err means that the event could not be processed, and Ok contains the event.
Aliased Type§
pub enum EventResult {
Ok(MaybeWindowAvailable),
Err(Error),
}