[−][src]Enum glutin::event::StartCause
Describes the reason the event loop is resuming.
Variants
Sent if the time specified by ControlFlow::WaitUntil
has been reached. Contains the
moment the timeout was requested and the requested resume time. The actual resume time is
guaranteed to be equal to or after the requested resume time.
Sent if the OS has new events to send to the window, after a wait was requested. Contains the moment the wait was requested and the resume time, if requested.
Sent if the event loop is being resumed after the loop's control flow was set to
ControlFlow::Poll
.
Sent once, immediately after run
is called. Indicates that the loop was just initialized.
Trait Implementations
impl Clone for StartCause
[src]
fn clone(&self) -> StartCause
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for StartCause
[src]
impl Debug for StartCause
[src]
impl Eq for StartCause
[src]
impl PartialEq<StartCause> for StartCause
[src]
fn eq(&self, other: &StartCause) -> bool
[src]
fn ne(&self, other: &StartCause) -> bool
[src]
impl StructuralEq for StartCause
[src]
impl StructuralPartialEq for StartCause
[src]
Auto Trait Implementations
impl RefUnwindSafe for StartCause
impl Send for StartCause
impl Sync for StartCause
impl Unpin for StartCause
impl UnwindSafe for StartCause
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,