pub struct ScreencastFrameAck {
pub method: ScreencastFrameAckMethod,
pub params: ScreencastFrameAckParams,
}Expand description
Acknowledges that a screencast frame has been received by the frontend. screencastFrameAck
Fields§
§method: ScreencastFrameAckMethod§params: ScreencastFrameAckParamsImplementations§
Source§impl ScreencastFrameAck
impl ScreencastFrameAck
pub fn builder() -> ScreencastFrameAckBuilder
Source§impl ScreencastFrameAck
impl ScreencastFrameAck
pub const IDENTIFIER: &'static str = "Page.screencastFrameAck"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ScreencastFrameAck
impl Clone for ScreencastFrameAck
Source§fn clone(&self) -> ScreencastFrameAck
fn clone(&self) -> ScreencastFrameAck
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 CommandResult for ScreencastFrameAck
impl CommandResult for ScreencastFrameAck
type Result = ScreencastFrameAckResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ScreencastFrameAck
impl Debug for ScreencastFrameAck
Source§impl<'de> Deserialize<'de> for ScreencastFrameAck
impl<'de> Deserialize<'de> for ScreencastFrameAck
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<ScreencastFrameAck> for BrowserProtocolCommands
impl From<ScreencastFrameAck> for BrowserProtocolCommands
Source§fn from(v: ScreencastFrameAck) -> Self
fn from(v: ScreencastFrameAck) -> Self
Converts to this type from the input type.
Source§impl From<ScreencastFrameAck> for Command
impl From<ScreencastFrameAck> for Command
Source§fn from(v: ScreencastFrameAck) -> Self
fn from(v: ScreencastFrameAck) -> Self
Converts to this type from the input type.
Source§impl From<ScreencastFrameAck> for PageCommands
impl From<ScreencastFrameAck> for PageCommands
Source§fn from(v: ScreencastFrameAck) -> Self
fn from(v: ScreencastFrameAck) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ScreencastFrameAck
impl PartialEq for ScreencastFrameAck
Source§impl Serialize for ScreencastFrameAck
impl Serialize for ScreencastFrameAck
Source§impl TryFrom<BrowserProtocolCommands> for ScreencastFrameAck
impl TryFrom<BrowserProtocolCommands> for ScreencastFrameAck
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <ScreencastFrameAck as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <ScreencastFrameAck as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for ScreencastFrameAck
impl TryFrom<Command> for ScreencastFrameAck
Source§impl TryFrom<PageCommands> for ScreencastFrameAck
impl TryFrom<PageCommands> for ScreencastFrameAck
Source§type Error = PageCommands
type Error = PageCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: PageCommands,
) -> Result<Self, <ScreencastFrameAck as TryFrom<PageCommands>>::Error>
fn try_from( e: PageCommands, ) -> Result<Self, <ScreencastFrameAck as TryFrom<PageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for ScreencastFrameAck
Auto Trait Implementations§
impl Freeze for ScreencastFrameAck
impl RefUnwindSafe for ScreencastFrameAck
impl Send for ScreencastFrameAck
impl Sync for ScreencastFrameAck
impl Unpin for ScreencastFrameAck
impl UnsafeUnpin for ScreencastFrameAck
impl UnwindSafe for ScreencastFrameAck
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