pub struct FrameTiming {
pub window_id: WindowId,
pub dirty_at: Option<Instant>,
pub invalidations: u64,
pub draw_start: Instant,
pub draw_end: Instant,
}Expand description
Timing for a single drawn window frame.
Fields§
§window_id: WindowIdThe window that was drawn.
dirty_at: Option<Instant>When the frame first became dirty (its first invalidation). None if
frame tracing was not yet enabled when the invalidation occurred.
invalidations: u64Number of invalidations coalesced into this frame.
draw_start: InstantWhen Window::draw started.
draw_end: InstantWhen Window::draw finished.
Implementations§
Source§impl FrameTiming
impl FrameTiming
Sourcepub fn draw_duration(&self) -> Duration
pub fn draw_duration(&self) -> Duration
Time spent inside Window::draw.
Sourcepub fn dirty_to_draw_duration(&self) -> Option<Duration>
pub fn dirty_to_draw_duration(&self) -> Option<Duration>
Time from the frame’s first invalidation to the end of its draw, if the first invalidation was observed.
Trait Implementations§
Source§impl Clone for FrameTiming
impl Clone for FrameTiming
Source§fn clone(&self) -> FrameTiming
fn clone(&self) -> FrameTiming
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FrameTiming
Auto Trait Implementations§
impl Freeze for FrameTiming
impl RefUnwindSafe for FrameTiming
impl Send for FrameTiming
impl Sync for FrameTiming
impl Unpin for FrameTiming
impl UnsafeUnpin for FrameTiming
impl UnwindSafe for FrameTiming
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more