pub struct InspectedElementWindowRestored {
pub method: InspectedElementWindowRestoredMethod,
pub params: InspectedElementWindowRestoredParams,
}Expand description
Fired when user asks to restore the Inspected Element floating window. inspectedElementWindowRestored
Fields§
§method: InspectedElementWindowRestoredMethod§params: InspectedElementWindowRestoredParamsImplementations§
Source§impl InspectedElementWindowRestored
impl InspectedElementWindowRestored
pub const IDENTIFIER: &'static str = "Overlay.inspectedElementWindowRestored"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for InspectedElementWindowRestored
impl Clone for InspectedElementWindowRestored
Source§fn clone(&self) -> InspectedElementWindowRestored
fn clone(&self) -> InspectedElementWindowRestored
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 InspectedElementWindowRestored
impl<'de> Deserialize<'de> for InspectedElementWindowRestored
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<InspectedElementWindowRestored> for BrowserProtocolEvents
impl From<InspectedElementWindowRestored> for BrowserProtocolEvents
Source§fn from(v: InspectedElementWindowRestored) -> Self
fn from(v: InspectedElementWindowRestored) -> Self
Converts to this type from the input type.
Source§impl From<InspectedElementWindowRestored> for Event
impl From<InspectedElementWindowRestored> for Event
Source§fn from(v: InspectedElementWindowRestored) -> Self
fn from(v: InspectedElementWindowRestored) -> Self
Converts to this type from the input type.
Source§impl From<InspectedElementWindowRestored> for OverlayEvents
impl From<InspectedElementWindowRestored> for OverlayEvents
Source§fn from(v: InspectedElementWindowRestored) -> Self
fn from(v: InspectedElementWindowRestored) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InspectedElementWindowRestored
impl PartialEq for InspectedElementWindowRestored
Source§fn eq(&self, other: &InspectedElementWindowRestored) -> bool
fn eq(&self, other: &InspectedElementWindowRestored) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<BrowserProtocolEvents> for InspectedElementWindowRestored
impl TryFrom<BrowserProtocolEvents> for InspectedElementWindowRestored
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, <InspectedElementWindowRestored as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <InspectedElementWindowRestored as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<OverlayEvents> for InspectedElementWindowRestored
impl TryFrom<OverlayEvents> for InspectedElementWindowRestored
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, <InspectedElementWindowRestored as TryFrom<OverlayEvents>>::Error>
fn try_from( e: OverlayEvents, ) -> Result<Self, <InspectedElementWindowRestored as TryFrom<OverlayEvents>>::Error>
Performs the conversion.
impl StructuralPartialEq for InspectedElementWindowRestored
Auto Trait Implementations§
impl Freeze for InspectedElementWindowRestored
impl RefUnwindSafe for InspectedElementWindowRestored
impl Send for InspectedElementWindowRestored
impl Sync for InspectedElementWindowRestored
impl Unpin for InspectedElementWindowRestored
impl UnsafeUnpin for InspectedElementWindowRestored
impl UnwindSafe for InspectedElementWindowRestored
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