Struct chrome_remote_interface_model::headless_experimental::BeginFrameReturn[][src]

pub struct BeginFrameReturn { /* fields omitted */ }
This is supported on crate features experimental and HeadlessExperimental and Page and Runtime only.

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

impl BeginFrameReturn[src]

pub fn new(has_damage: bool, screenshot_data: Option<String>) -> Self[src]

pub fn has_damage(&self) -> bool[src]

Whether the BeginFrame resulted in damage and, thus, a new frame was committed to the display. Reported for diagnostic uses, may be removed in the future.

pub fn screenshot_data(&self) -> Option<&String>[src]

Base64-encoded image data of the screenshot, if one was requested and successfully taken.

Trait Implementations

impl Clone for BeginFrameReturn[src]

impl Debug for BeginFrameReturn[src]

impl<'de> Deserialize<'de> for BeginFrameReturn[src]

impl Serialize for BeginFrameReturn[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.