pub struct FrameRendered {
pub frame_id: u64,
}Expand description
A frame was rendered to the display.
Emitted after the display driver completes a frame render. Useful for performance monitoring and synchronization.
Fields§
§frame_id: u64Frame sequence number
Trait Implementations§
Source§impl Clone for FrameRendered
impl Clone for FrameRendered
Source§fn clone(&self) -> FrameRendered
fn clone(&self) -> FrameRendered
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FrameRendered
impl Debug for FrameRendered
Source§impl Event for FrameRendered
impl Event for FrameRendered
Source§impl PartialEq for FrameRendered
impl PartialEq for FrameRendered
impl Copy for FrameRendered
impl Eq for FrameRendered
impl StructuralPartialEq for FrameRendered
Auto Trait Implementations§
impl Freeze for FrameRendered
impl RefUnwindSafe for FrameRendered
impl Send for FrameRendered
impl Sync for FrameRendered
impl Unpin for FrameRendered
impl UnsafeUnpin for FrameRendered
impl UnwindSafe for FrameRendered
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