pub struct BeginFrameCommand { /* private fields */ }experimental and HeadlessExperimental and Page and Runtime only.Expand description
Sends a BeginFrame to the target and returns when the frame was completed. Optionally captures a screenshot from the resulting frame. Requires that the target was created with enabled BeginFrameControl. Designed for use with –run-all-compositor-stages-before-draw, see also https://goo.gl/3zHXhB for more background.
Implementations§
Source§impl BeginFrameCommand
impl BeginFrameCommand
pub fn builder() -> BeginFrameCommandBuilder
Sourcepub fn frame_time_ticks(&self) -> Option<&f64>
pub fn frame_time_ticks(&self) -> Option<&f64>
Timestamp of this BeginFrame in Renderer TimeTicks (milliseconds of uptime). If not set, the current time will be used.
Sourcepub fn interval(&self) -> Option<&f64>
pub fn interval(&self) -> Option<&f64>
The interval between BeginFrames that is reported to the compositor, in milliseconds. Defaults to a 60 frames/second interval, i.e. about 16.666 milliseconds.
Sourcepub fn no_display_updates(&self) -> Option<&bool>
pub fn no_display_updates(&self) -> Option<&bool>
Whether updates should not be committed and drawn onto the display. False by default. If true, only side effects of the BeginFrame will be run, such as layout and animations, but any visual updates may not be visible on the display or in screenshots.
Sourcepub fn screenshot(&self) -> Option<&ScreenshotParams>
pub fn screenshot(&self) -> Option<&ScreenshotParams>
If set, a screenshot of the frame will be captured and returned in the response. Otherwise, no screenshot will be captured. Note that capturing a screenshot can fail, for example, during renderer initialization. In such a case, no screenshot data will be returned.
Trait Implementations§
Source§impl Clone for BeginFrameCommand
impl Clone for BeginFrameCommand
Source§fn clone(&self) -> BeginFrameCommand
fn clone(&self) -> BeginFrameCommand
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more