pub enum ContextDisplay {
None,
Screen,
Window(String, usize, usize),
}Expand description
Kinds of Context’s displays.
Variants§
None
No display.
Screen
The whole screen.
Window(String, usize, usize)
A window with name and dimensions.
Auto Trait Implementations§
impl Freeze for ContextDisplay
impl RefUnwindSafe for ContextDisplay
impl Send for ContextDisplay
impl Sync for ContextDisplay
impl Unpin for ContextDisplay
impl UnwindSafe for ContextDisplay
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more