pub struct TargetInfoChanged {
pub method: TargetInfoChangedMethod,
pub params: TargetInfoChangedParams,
}Expand description
Issued when some information about a target has changed. This only happens between
targetCreated and targetDestroyed.
targetInfoChanged
Fields§
§method: TargetInfoChangedMethod§params: TargetInfoChangedParamsImplementations§
Source§impl TargetInfoChanged
impl TargetInfoChanged
pub const IDENTIFIER: &'static str = "Target.targetInfoChanged"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for TargetInfoChanged
impl Clone for TargetInfoChanged
Source§fn clone(&self) -> TargetInfoChanged
fn clone(&self) -> TargetInfoChanged
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 TargetInfoChanged
impl Debug for TargetInfoChanged
Source§impl<'de> Deserialize<'de> for TargetInfoChanged
impl<'de> Deserialize<'de> for TargetInfoChanged
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<TargetInfoChanged> for BrowserProtocolEvents
impl From<TargetInfoChanged> for BrowserProtocolEvents
Source§fn from(v: TargetInfoChanged) -> Self
fn from(v: TargetInfoChanged) -> Self
Converts to this type from the input type.
Source§impl From<TargetInfoChanged> for Event
impl From<TargetInfoChanged> for Event
Source§fn from(v: TargetInfoChanged) -> Self
fn from(v: TargetInfoChanged) -> Self
Converts to this type from the input type.
Source§impl From<TargetInfoChanged> for TargetEvents
impl From<TargetInfoChanged> for TargetEvents
Source§fn from(v: TargetInfoChanged) -> Self
fn from(v: TargetInfoChanged) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TargetInfoChanged
impl PartialEq for TargetInfoChanged
Source§impl Serialize for TargetInfoChanged
impl Serialize for TargetInfoChanged
Source§impl TryFrom<BrowserProtocolEvents> for TargetInfoChanged
impl TryFrom<BrowserProtocolEvents> for TargetInfoChanged
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, <TargetInfoChanged as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <TargetInfoChanged as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for TargetInfoChanged
impl TryFrom<Event> for TargetInfoChanged
Source§impl TryFrom<TargetEvents> for TargetInfoChanged
impl TryFrom<TargetEvents> for TargetInfoChanged
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, <TargetInfoChanged as TryFrom<TargetEvents>>::Error>
fn try_from( e: TargetEvents, ) -> Result<Self, <TargetInfoChanged as TryFrom<TargetEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for TargetInfoChanged
Auto Trait Implementations§
impl Freeze for TargetInfoChanged
impl RefUnwindSafe for TargetInfoChanged
impl Send for TargetInfoChanged
impl Sync for TargetInfoChanged
impl Unpin for TargetInfoChanged
impl UnsafeUnpin for TargetInfoChanged
impl UnwindSafe for TargetInfoChanged
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