pub struct InspectPanelShowRequested {
pub method: InspectPanelShowRequestedMethod,
pub params: InspectPanelShowRequestedParams,
}Expand description
Fired when user asks to show the Inspect panel. inspectPanelShowRequested
Fields§
§method: InspectPanelShowRequestedMethod§params: InspectPanelShowRequestedParamsImplementations§
Source§impl InspectPanelShowRequested
impl InspectPanelShowRequested
pub const IDENTIFIER: &'static str = "Overlay.inspectPanelShowRequested"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for InspectPanelShowRequested
impl Clone for InspectPanelShowRequested
Source§fn clone(&self) -> InspectPanelShowRequested
fn clone(&self) -> InspectPanelShowRequested
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 InspectPanelShowRequested
impl Debug for InspectPanelShowRequested
Source§impl<'de> Deserialize<'de> for InspectPanelShowRequested
impl<'de> Deserialize<'de> for InspectPanelShowRequested
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<InspectPanelShowRequested> for BrowserProtocolEvents
impl From<InspectPanelShowRequested> for BrowserProtocolEvents
Source§fn from(v: InspectPanelShowRequested) -> Self
fn from(v: InspectPanelShowRequested) -> Self
Converts to this type from the input type.
Source§impl From<InspectPanelShowRequested> for Event
impl From<InspectPanelShowRequested> for Event
Source§fn from(v: InspectPanelShowRequested) -> Self
fn from(v: InspectPanelShowRequested) -> Self
Converts to this type from the input type.
Source§impl From<InspectPanelShowRequested> for OverlayEvents
impl From<InspectPanelShowRequested> for OverlayEvents
Source§fn from(v: InspectPanelShowRequested) -> Self
fn from(v: InspectPanelShowRequested) -> Self
Converts to this type from the input type.
Source§impl TryFrom<BrowserProtocolEvents> for InspectPanelShowRequested
impl TryFrom<BrowserProtocolEvents> for InspectPanelShowRequested
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, <InspectPanelShowRequested as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <InspectPanelShowRequested as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<Event> for InspectPanelShowRequested
impl TryFrom<Event> for InspectPanelShowRequested
Source§impl TryFrom<OverlayEvents> for InspectPanelShowRequested
impl TryFrom<OverlayEvents> for InspectPanelShowRequested
Source§type Error = OverlayEvents
type Error = OverlayEvents
The type returned in the event of a conversion error.
Source§fn try_from(
e: OverlayEvents,
) -> Result<Self, <InspectPanelShowRequested as TryFrom<OverlayEvents>>::Error>
fn try_from( e: OverlayEvents, ) -> Result<Self, <InspectPanelShowRequested as TryFrom<OverlayEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for InspectPanelShowRequested
Auto Trait Implementations§
impl Freeze for InspectPanelShowRequested
impl RefUnwindSafe for InspectPanelShowRequested
impl Send for InspectPanelShowRequested
impl Sync for InspectPanelShowRequested
impl Unpin for InspectPanelShowRequested
impl UnsafeUnpin for InspectPanelShowRequested
impl UnwindSafe for InspectPanelShowRequested
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