pub struct ScreencastFrameParams {
pub data: Binary,
pub metadata: ScreencastFrameMetadata,
pub session_id: i64,
}Expand description
Compressed image data requested by the startScreencast.
screencastFrame
Fields§
§data: BinaryBase64-encoded compressed image.
metadata: ScreencastFrameMetadataScreencast frame metadata.
session_id: i64Frame number.
Trait Implementations§
Source§impl Clone for ScreencastFrameParams
impl Clone for ScreencastFrameParams
Source§fn clone(&self) -> ScreencastFrameParams
fn clone(&self) -> ScreencastFrameParams
Returns a duplicate 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 ScreencastFrameParams
impl Debug for ScreencastFrameParams
Source§impl<'de> Deserialize<'de> for ScreencastFrameParams
impl<'de> Deserialize<'de> for ScreencastFrameParams
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 PartialEq for ScreencastFrameParams
impl PartialEq for ScreencastFrameParams
Source§impl Serialize for ScreencastFrameParams
impl Serialize for ScreencastFrameParams
impl StructuralPartialEq for ScreencastFrameParams
Auto Trait Implementations§
impl Freeze for ScreencastFrameParams
impl RefUnwindSafe for ScreencastFrameParams
impl Send for ScreencastFrameParams
impl Sync for ScreencastFrameParams
impl Unpin for ScreencastFrameParams
impl UnsafeUnpin for ScreencastFrameParams
impl UnwindSafe for ScreencastFrameParams
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