Struct winit::event_loop::EventLoopWindowTarget
source · [−]pub struct EventLoopWindowTarget<T: 'static> {
pub(crate) p: EventLoopWindowTarget<T>,
pub(crate) _marker: PhantomData<*mut ()>,
}
Expand description
Target that associates windows with an EventLoop
.
This type exists to allow you to create new windows while Winit executes
your callback. EventLoop
will coerce into this type (impl<T> Deref for EventLoop<T>
), so functions that take this as a parameter can also take
&EventLoop
.
Fields
p: EventLoopWindowTarget<T>
_marker: PhantomData<*mut ()>
Implementations
sourceimpl<T> EventLoopWindowTarget<T>
impl<T> EventLoopWindowTarget<T>
sourcepub fn available_monitors(&self) -> impl Iterator<Item = MonitorHandle>
pub fn available_monitors(&self) -> impl Iterator<Item = MonitorHandle>
Returns the list of all the monitors available on the system.
sourcepub fn primary_monitor(&self) -> Option<MonitorHandle>
pub fn primary_monitor(&self) -> Option<MonitorHandle>
Returns the primary monitor of the system.
Returns None
if it can’t identify any monitor as a primary one.
Platform-specific
Wayland: Always returns None
.
Trait Implementations
sourceimpl<T> Debug for EventLoopWindowTarget<T>
impl<T> Debug for EventLoopWindowTarget<T>
sourceimpl<T> EventLoopWindowTargetExtUnix for EventLoopWindowTarget<T>
impl<T> EventLoopWindowTargetExtUnix for EventLoopWindowTarget<T>
sourcefn is_wayland(&self) -> bool
fn is_wayland(&self) -> bool
True if the EventLoopWindowTarget
uses Wayland.
Auto Trait Implementations
impl<T> !RefUnwindSafe for EventLoopWindowTarget<T>
impl<T> !Send for EventLoopWindowTarget<T>
impl<T> !Sync for EventLoopWindowTarget<T>
impl<T> Unpin for EventLoopWindowTarget<T> where
T: Unpin,
impl<T> !UnwindSafe for EventLoopWindowTarget<T>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more