pub struct StartTabMirroring {
pub method: StartTabMirroringMethod,
pub params: StartTabMirroringParams,
}Expand description
Starts mirroring the tab to the sink. startTabMirroring
Fields§
§method: StartTabMirroringMethod§params: StartTabMirroringParamsImplementations§
Source§impl StartTabMirroring
impl StartTabMirroring
pub fn builder() -> StartTabMirroringBuilder
Source§impl StartTabMirroring
impl StartTabMirroring
pub const IDENTIFIER: &'static str = "Cast.startTabMirroring"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for StartTabMirroring
impl Clone for StartTabMirroring
Source§fn clone(&self) -> StartTabMirroring
fn clone(&self) -> StartTabMirroring
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 StartTabMirroring
impl CommandResult for StartTabMirroring
type Result = StartTabMirroringResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for StartTabMirroring
impl Debug for StartTabMirroring
Source§impl<'de> Deserialize<'de> for StartTabMirroring
impl<'de> Deserialize<'de> for StartTabMirroring
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<StartTabMirroring> for BrowserProtocolCommands
impl From<StartTabMirroring> for BrowserProtocolCommands
Source§fn from(v: StartTabMirroring) -> Self
fn from(v: StartTabMirroring) -> Self
Converts to this type from the input type.
Source§impl From<StartTabMirroring> for CastCommands
impl From<StartTabMirroring> for CastCommands
Source§fn from(v: StartTabMirroring) -> Self
fn from(v: StartTabMirroring) -> Self
Converts to this type from the input type.
Source§impl From<StartTabMirroring> for Command
impl From<StartTabMirroring> for Command
Source§fn from(v: StartTabMirroring) -> Self
fn from(v: StartTabMirroring) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StartTabMirroring
impl PartialEq for StartTabMirroring
Source§impl Serialize for StartTabMirroring
impl Serialize for StartTabMirroring
Source§impl TryFrom<BrowserProtocolCommands> for StartTabMirroring
impl TryFrom<BrowserProtocolCommands> for StartTabMirroring
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, <StartTabMirroring as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <StartTabMirroring as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<CastCommands> for StartTabMirroring
impl TryFrom<CastCommands> for StartTabMirroring
Source§type Error = CastCommands
type Error = CastCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: CastCommands,
) -> Result<Self, <StartTabMirroring as TryFrom<CastCommands>>::Error>
fn try_from( e: CastCommands, ) -> Result<Self, <StartTabMirroring as TryFrom<CastCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for StartTabMirroring
impl TryFrom<Command> for StartTabMirroring
impl StructuralPartialEq for StartTabMirroring
Auto Trait Implementations§
impl Freeze for StartTabMirroring
impl RefUnwindSafe for StartTabMirroring
impl Send for StartTabMirroring
impl Sync for StartTabMirroring
impl Unpin for StartTabMirroring
impl UnsafeUnpin for StartTabMirroring
impl UnwindSafe for StartTabMirroring
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