pub struct StartObserving {
pub method: StartObservingMethod,
pub params: StartObservingParams,
}Expand description
Enables event updates for the service. startObserving
Fields§
§method: StartObservingMethod§params: StartObservingParamsImplementations§
Source§impl StartObserving
impl StartObserving
pub fn builder() -> StartObservingBuilder
Source§impl StartObserving
impl StartObserving
pub const IDENTIFIER: &'static str = "BackgroundService.startObserving"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for StartObserving
impl Clone for StartObserving
Source§fn clone(&self) -> StartObserving
fn clone(&self) -> StartObserving
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 StartObserving
impl CommandResult for StartObserving
type Result = StartObservingResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for StartObserving
impl Debug for StartObserving
Source§impl<'de> Deserialize<'de> for StartObserving
impl<'de> Deserialize<'de> for StartObserving
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<StartObserving> for BackgroundServiceCommands
impl From<StartObserving> for BackgroundServiceCommands
Source§fn from(v: StartObserving) -> Self
fn from(v: StartObserving) -> Self
Converts to this type from the input type.
Source§impl From<StartObserving> for BrowserProtocolCommands
impl From<StartObserving> for BrowserProtocolCommands
Source§fn from(v: StartObserving) -> Self
fn from(v: StartObserving) -> Self
Converts to this type from the input type.
Source§impl From<StartObserving> for Command
impl From<StartObserving> for Command
Source§fn from(v: StartObserving) -> Self
fn from(v: StartObserving) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StartObserving
impl PartialEq for StartObserving
Source§impl Serialize for StartObserving
impl Serialize for StartObserving
Source§impl TryFrom<BackgroundServiceCommands> for StartObserving
impl TryFrom<BackgroundServiceCommands> for StartObserving
Source§type Error = BackgroundServiceCommands
type Error = BackgroundServiceCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BackgroundServiceCommands,
) -> Result<Self, <StartObserving as TryFrom<BackgroundServiceCommands>>::Error>
fn try_from( e: BackgroundServiceCommands, ) -> Result<Self, <StartObserving as TryFrom<BackgroundServiceCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolCommands> for StartObserving
impl TryFrom<BrowserProtocolCommands> for StartObserving
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, <StartObserving as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <StartObserving as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for StartObserving
impl TryFrom<Command> for StartObserving
impl StructuralPartialEq for StartObserving
Auto Trait Implementations§
impl Freeze for StartObserving
impl RefUnwindSafe for StartObserving
impl Send for StartObserving
impl Sync for StartObserving
impl Unpin for StartObserving
impl UnsafeUnpin for StartObserving
impl UnwindSafe for StartObserving
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