Struct cdp::page::StartScreencastCommand [] [src]

pub struct StartScreencastCommand {
    pub format: Option<StartScreencastCommandFormat>,
    pub quality: Option<i32>,
    pub max_width: Option<i32>,
    pub max_height: Option<i32>,
    pub every_nth_frame: Option<i32>,
}

[Experimental] Starts sending each frame using the screencastFrame event.

Command Page.startScreencast

Domain Module: cdp::page
Command Struct: cdp::page::StartScreencastCommand
Response Struct: cdp::page::StartScreencastResponse

Fields

Image compression format.

Compression quality from range [0..100].

Maximum screenshot width.

Maximum screenshot height.

Send every n-th frame.

Trait Implementations

impl Clone for StartScreencastCommand
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for StartScreencastCommand
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for StartScreencastCommand
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl CdpCommand for StartScreencastCommand
[src]

COMMAND_NAME: &'static str = "Page.startScreencast"

impl SerializeCdpCommand for StartScreencastCommand
[src]

[src]

[src]

impl<'de> DeserializeCdpCommand<'de> for StartScreencastCommand
[src]

[src]

impl<'b> HasCdpResponse<'b> for StartScreencastCommand
[src]