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