pub struct BackgroundServiceEventReceived {
pub method: BackgroundServiceEventReceivedMethod,
pub params: BackgroundServiceEventReceivedParams,
}Expand description
Called with all existing backgroundServiceEvents when enabled, and all new events afterwards if enabled and recording. backgroundServiceEventReceived
Fields§
§method: BackgroundServiceEventReceivedMethod§params: BackgroundServiceEventReceivedParamsImplementations§
Source§impl BackgroundServiceEventReceived
impl BackgroundServiceEventReceived
pub const IDENTIFIER: &'static str = "BackgroundService.backgroundServiceEventReceived"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for BackgroundServiceEventReceived
impl Clone for BackgroundServiceEventReceived
Source§fn clone(&self) -> BackgroundServiceEventReceived
fn clone(&self) -> BackgroundServiceEventReceived
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<'de> Deserialize<'de> for BackgroundServiceEventReceived
impl<'de> Deserialize<'de> for BackgroundServiceEventReceived
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<BackgroundServiceEventReceived> for BackgroundServiceEvents
impl From<BackgroundServiceEventReceived> for BackgroundServiceEvents
Source§fn from(v: BackgroundServiceEventReceived) -> Self
fn from(v: BackgroundServiceEventReceived) -> Self
Converts to this type from the input type.
Source§impl From<BackgroundServiceEventReceived> for BrowserProtocolEvents
impl From<BackgroundServiceEventReceived> for BrowserProtocolEvents
Source§fn from(v: BackgroundServiceEventReceived) -> Self
fn from(v: BackgroundServiceEventReceived) -> Self
Converts to this type from the input type.
Source§impl From<BackgroundServiceEventReceived> for Event
impl From<BackgroundServiceEventReceived> for Event
Source§fn from(v: BackgroundServiceEventReceived) -> Self
fn from(v: BackgroundServiceEventReceived) -> Self
Converts to this type from the input type.
Source§impl PartialEq for BackgroundServiceEventReceived
impl PartialEq for BackgroundServiceEventReceived
Source§fn eq(&self, other: &BackgroundServiceEventReceived) -> bool
fn eq(&self, other: &BackgroundServiceEventReceived) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<BackgroundServiceEvents> for BackgroundServiceEventReceived
impl TryFrom<BackgroundServiceEvents> for BackgroundServiceEventReceived
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, <BackgroundServiceEventReceived as TryFrom<BackgroundServiceEvents>>::Error>
fn try_from( e: BackgroundServiceEvents, ) -> Result<Self, <BackgroundServiceEventReceived as TryFrom<BackgroundServiceEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<BrowserProtocolEvents> for BackgroundServiceEventReceived
impl TryFrom<BrowserProtocolEvents> for BackgroundServiceEventReceived
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, <BackgroundServiceEventReceived as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <BackgroundServiceEventReceived as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for BackgroundServiceEventReceived
Auto Trait Implementations§
impl Freeze for BackgroundServiceEventReceived
impl RefUnwindSafe for BackgroundServiceEventReceived
impl Send for BackgroundServiceEventReceived
impl Sync for BackgroundServiceEventReceived
impl Unpin for BackgroundServiceEventReceived
impl UnsafeUnpin for BackgroundServiceEventReceived
impl UnwindSafe for BackgroundServiceEventReceived
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