pub enum FramePacingMode {
Vsync,
Hard60,
Hard120,
NoVsync,
}Variants§
Vsync
Pace frames to the display refresh interval. The production default: animations advance once per vsync instead of re-rendering uncapped.
Hard60
Hard120
NoVsync
Render as fast as possible. For perf harnesses and robot drivers that measure work throughput; saturates the GPU if used in a real app.
Implementations§
Trait Implementations§
Source§impl Clone for FramePacingMode
impl Clone for FramePacingMode
impl Copy for FramePacingMode
Source§impl Debug for FramePacingMode
impl Debug for FramePacingMode
Source§impl Default for FramePacingMode
impl Default for FramePacingMode
impl Eq for FramePacingMode
Source§impl PartialEq for FramePacingMode
impl PartialEq for FramePacingMode
impl StructuralPartialEq for FramePacingMode
Auto Trait Implementations§
impl Freeze for FramePacingMode
impl RefUnwindSafe for FramePacingMode
impl Send for FramePacingMode
impl Sync for FramePacingMode
impl Unpin for FramePacingMode
impl UnsafeUnpin for FramePacingMode
impl UnwindSafe for FramePacingMode
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