pub struct RecordingStateChanged {
pub method: RecordingStateChangedMethod,
pub params: RecordingStateChangedParams,
}Expand description
Called when the recording state for the service has been updated. recordingStateChanged
Fields§
§method: RecordingStateChangedMethod§params: RecordingStateChangedParamsImplementations§
Source§impl RecordingStateChanged
impl RecordingStateChanged
pub const IDENTIFIER: &'static str = "BackgroundService.recordingStateChanged"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for RecordingStateChanged
impl Clone for RecordingStateChanged
Source§fn clone(&self) -> RecordingStateChanged
fn clone(&self) -> RecordingStateChanged
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 Debug for RecordingStateChanged
impl Debug for RecordingStateChanged
Source§impl<'de> Deserialize<'de> for RecordingStateChanged
impl<'de> Deserialize<'de> for RecordingStateChanged
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<RecordingStateChanged> for BackgroundServiceEvents
impl From<RecordingStateChanged> for BackgroundServiceEvents
Source§fn from(v: RecordingStateChanged) -> Self
fn from(v: RecordingStateChanged) -> Self
Converts to this type from the input type.
Source§impl From<RecordingStateChanged> for BrowserProtocolEvents
impl From<RecordingStateChanged> for BrowserProtocolEvents
Source§fn from(v: RecordingStateChanged) -> Self
fn from(v: RecordingStateChanged) -> Self
Converts to this type from the input type.
Source§impl From<RecordingStateChanged> for Event
impl From<RecordingStateChanged> for Event
Source§fn from(v: RecordingStateChanged) -> Self
fn from(v: RecordingStateChanged) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RecordingStateChanged
impl PartialEq for RecordingStateChanged
Source§impl Serialize for RecordingStateChanged
impl Serialize for RecordingStateChanged
Source§impl TryFrom<BackgroundServiceEvents> for RecordingStateChanged
impl TryFrom<BackgroundServiceEvents> for RecordingStateChanged
Source§type Error = BackgroundServiceEvents
type Error = BackgroundServiceEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BackgroundServiceEvents,
) -> Result<Self, <RecordingStateChanged as TryFrom<BackgroundServiceEvents>>::Error>
fn try_from( e: BackgroundServiceEvents, ) -> Result<Self, <RecordingStateChanged as TryFrom<BackgroundServiceEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolEvents> for RecordingStateChanged
impl TryFrom<BrowserProtocolEvents> for RecordingStateChanged
Source§type Error = BrowserProtocolEvents
type Error = BrowserProtocolEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolEvents,
) -> Result<Self, <RecordingStateChanged as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <RecordingStateChanged as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for RecordingStateChanged
impl TryFrom<Event> for RecordingStateChanged
impl StructuralPartialEq for RecordingStateChanged
Auto Trait Implementations§
impl Freeze for RecordingStateChanged
impl RefUnwindSafe for RecordingStateChanged
impl Send for RecordingStateChanged
impl Sync for RecordingStateChanged
impl Unpin for RecordingStateChanged
impl UnsafeUnpin for RecordingStateChanged
impl UnwindSafe for RecordingStateChanged
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