Enum pilka_winit::winit::event::StartCause[][src]

pub enum StartCause {
    ResumeTimeReached {
        start: Instant,
        requested_resume: Instant,
    },
    WaitCancelled {
        start: Instant,
        requested_resume: Option<Instant>,
    },
    Poll,
    Init,
}

Describes the reason the event loop is resuming.

Variants

ResumeTimeReached

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.

Fields of ResumeTimeReached

start: Instantrequested_resume: Instant
WaitCancelled

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.

Fields of WaitCancelled

start: Instantrequested_resume: Option<Instant>
Poll

Sent if the event loop is being resumed after the loop's control flow was set to ControlFlow::Poll.

Init

Sent once, immediately after run is called. Indicates that the loop was just initialized.

Trait Implementations

impl Clone for StartCause[src]

impl Copy for StartCause[src]

impl Debug for StartCause[src]

impl Eq for StartCause[src]

impl PartialEq<StartCause> for StartCause[src]

impl StructuralEq for StartCause[src]

impl StructuralPartialEq for StartCause[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.