pub struct Display<B: Backend> {
pub handle: B::Display,
pub info: DisplayInfo,
pub modes: Vec<DisplayMode<B>>,
}
Expand description
Representation of a display
Fields§
§handle: B::Display
The display handle.
info: DisplayInfo
General informations about this display.
modes: Vec<DisplayMode<B>>
Builtin display modes
Trait Implementations§
Auto Trait Implementations§
impl<B> Freeze for Display<B>
impl<B> RefUnwindSafe for Display<B>
impl<B> Send for Display<B>
impl<B> Sync for Display<B>
impl<B> Unpin for Display<B>
impl<B> UnwindSafe for Display<B>
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