Struct chromiumoxide_cdp::cdp::browser_protocol::page::EventScreencastFrame
source · pub struct EventScreencastFrame {
pub data: Binary,
pub metadata: ScreencastFrameMetadata,
pub session_id: i64,
}
Expand description
Compressed image data requested by the startScreencast
.
screencastFrame
Fields§
§data: Binary
Base64-encoded compressed image.
metadata: ScreencastFrameMetadata
Screencast frame metadata.
session_id: i64
Frame number.
Implementations§
source§impl EventScreencastFrame
impl EventScreencastFrame
pub const IDENTIFIER: &'static str = "Page.screencastFrame"
Trait Implementations§
source§impl Clone for EventScreencastFrame
impl Clone for EventScreencastFrame
source§fn clone(&self) -> EventScreencastFrame
fn clone(&self) -> EventScreencastFrame
Returns a copy 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 EventScreencastFrame
impl Debug for EventScreencastFrame
source§impl<'de> Deserialize<'de> for EventScreencastFrame
impl<'de> Deserialize<'de> for EventScreencastFrame
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<EventScreencastFrame> for CdpEvent
impl From<EventScreencastFrame> for CdpEvent
source§fn from(el: EventScreencastFrame) -> CdpEvent
fn from(el: EventScreencastFrame) -> CdpEvent
Converts to this type from the input type.
source§impl IntoEventKind for EventScreencastFrame
impl IntoEventKind for EventScreencastFrame
source§fn event_kind() -> EventKindwhere
Self: Sized + 'static,
fn event_kind() -> EventKindwhere Self: Sized + 'static,
What kind of event this type is
source§impl Method for EventScreencastFrame
impl Method for EventScreencastFrame
source§fn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like:
DOM.removeNode
source§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOM
source§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNode
source§impl MethodType for EventScreencastFrame
impl MethodType for EventScreencastFrame
source§impl PartialEq<EventScreencastFrame> for EventScreencastFrame
impl PartialEq<EventScreencastFrame> for EventScreencastFrame
source§fn eq(&self, other: &EventScreencastFrame) -> bool
fn eq(&self, other: &EventScreencastFrame) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.