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