pub struct TargetCreated {
pub method: TargetCreatedMethod,
pub params: TargetCreatedParams,
}Expand description
Issued when a possible inspection target is created. targetCreated
Fields§
§method: TargetCreatedMethod§params: TargetCreatedParamsImplementations§
Source§impl TargetCreated
impl TargetCreated
pub const IDENTIFIER: &'static str = "Target.targetCreated"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for TargetCreated
impl Clone for TargetCreated
Source§fn clone(&self) -> TargetCreated
fn clone(&self) -> TargetCreated
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 TargetCreated
impl Debug for TargetCreated
Source§impl<'de> Deserialize<'de> for TargetCreated
impl<'de> Deserialize<'de> for TargetCreated
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<TargetCreated> for BrowserProtocolEvents
impl From<TargetCreated> for BrowserProtocolEvents
Source§fn from(v: TargetCreated) -> Self
fn from(v: TargetCreated) -> Self
Converts to this type from the input type.
Source§impl From<TargetCreated> for Event
impl From<TargetCreated> for Event
Source§fn from(v: TargetCreated) -> Self
fn from(v: TargetCreated) -> Self
Converts to this type from the input type.
Source§impl From<TargetCreated> for TargetEvents
impl From<TargetCreated> for TargetEvents
Source§fn from(v: TargetCreated) -> Self
fn from(v: TargetCreated) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TargetCreated
impl PartialEq for TargetCreated
Source§impl Serialize for TargetCreated
impl Serialize for TargetCreated
Source§impl TryFrom<BrowserProtocolEvents> for TargetCreated
impl TryFrom<BrowserProtocolEvents> for TargetCreated
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, <TargetCreated as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <TargetCreated as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for TargetCreated
impl TryFrom<Event> for TargetCreated
Source§impl TryFrom<TargetEvents> for TargetCreated
impl TryFrom<TargetEvents> for TargetCreated
Source§type Error = TargetEvents
type Error = TargetEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: TargetEvents,
) -> Result<Self, <TargetCreated as TryFrom<TargetEvents>>::Error>
fn try_from( e: TargetEvents, ) -> Result<Self, <TargetCreated as TryFrom<TargetEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for TargetCreated
Auto Trait Implementations§
impl Freeze for TargetCreated
impl RefUnwindSafe for TargetCreated
impl Send for TargetCreated
impl Sync for TargetCreated
impl Unpin for TargetCreated
impl UnsafeUnpin for TargetCreated
impl UnwindSafe for TargetCreated
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