pub struct StopScreencast {
pub method: StopScreencastMethod,
pub params: StopScreencastParams,
}Expand description
Stops sending each frame in the screencastFrame.
stopScreencast
Fields§
§method: StopScreencastMethod§params: StopScreencastParamsImplementations§
Source§impl StopScreencast
impl StopScreencast
pub fn builder() -> StopScreencastBuilder
Source§impl StopScreencast
impl StopScreencast
pub const IDENTIFIER: &'static str = "Page.stopScreencast"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for StopScreencast
impl Clone for StopScreencast
Source§fn clone(&self) -> StopScreencast
fn clone(&self) -> StopScreencast
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 StopScreencast
impl CommandResult for StopScreencast
type Result = StopScreencastResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for StopScreencast
impl Debug for StopScreencast
Source§impl<'de> Deserialize<'de> for StopScreencast
impl<'de> Deserialize<'de> for StopScreencast
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<StopScreencast> for BrowserProtocolCommands
impl From<StopScreencast> for BrowserProtocolCommands
Source§fn from(v: StopScreencast) -> Self
fn from(v: StopScreencast) -> Self
Converts to this type from the input type.
Source§impl From<StopScreencast> for Command
impl From<StopScreencast> for Command
Source§fn from(v: StopScreencast) -> Self
fn from(v: StopScreencast) -> Self
Converts to this type from the input type.
Source§impl From<StopScreencast> for PageCommands
impl From<StopScreencast> for PageCommands
Source§fn from(v: StopScreencast) -> Self
fn from(v: StopScreencast) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StopScreencast
impl PartialEq for StopScreencast
Source§impl Serialize for StopScreencast
impl Serialize for StopScreencast
Source§impl TryFrom<BrowserProtocolCommands> for StopScreencast
impl TryFrom<BrowserProtocolCommands> for StopScreencast
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, <StopScreencast as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <StopScreencast as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for StopScreencast
impl TryFrom<Command> for StopScreencast
Source§impl TryFrom<PageCommands> for StopScreencast
impl TryFrom<PageCommands> for StopScreencast
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, <StopScreencast as TryFrom<PageCommands>>::Error>
fn try_from( e: PageCommands, ) -> Result<Self, <StopScreencast as TryFrom<PageCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for StopScreencast
Auto Trait Implementations§
impl Freeze for StopScreencast
impl RefUnwindSafe for StopScreencast
impl Send for StopScreencast
impl Sync for StopScreencast
impl Unpin for StopScreencast
impl UnsafeUnpin for StopScreencast
impl UnwindSafe for StopScreencast
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