pub struct ShadowRootPopped {
pub method: ShadowRootPoppedMethod,
pub params: ShadowRootPoppedParams,
}Expand description
Called when shadow root is popped from the element. shadowRootPopped
Fields§
§method: ShadowRootPoppedMethod§params: ShadowRootPoppedParamsImplementations§
Source§impl ShadowRootPopped
impl ShadowRootPopped
pub const IDENTIFIER: &'static str = "DOM.shadowRootPopped"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ShadowRootPopped
impl Clone for ShadowRootPopped
Source§fn clone(&self) -> ShadowRootPopped
fn clone(&self) -> ShadowRootPopped
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 ShadowRootPopped
impl Debug for ShadowRootPopped
Source§impl<'de> Deserialize<'de> for ShadowRootPopped
impl<'de> Deserialize<'de> for ShadowRootPopped
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<ShadowRootPopped> for BrowserProtocolEvents
impl From<ShadowRootPopped> for BrowserProtocolEvents
Source§fn from(v: ShadowRootPopped) -> Self
fn from(v: ShadowRootPopped) -> Self
Converts to this type from the input type.
Source§impl From<ShadowRootPopped> for DomEvents
impl From<ShadowRootPopped> for DomEvents
Source§fn from(v: ShadowRootPopped) -> Self
fn from(v: ShadowRootPopped) -> Self
Converts to this type from the input type.
Source§impl From<ShadowRootPopped> for Event
impl From<ShadowRootPopped> for Event
Source§fn from(v: ShadowRootPopped) -> Self
fn from(v: ShadowRootPopped) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ShadowRootPopped
impl PartialEq for ShadowRootPopped
Source§impl Serialize for ShadowRootPopped
impl Serialize for ShadowRootPopped
Source§impl TryFrom<BrowserProtocolEvents> for ShadowRootPopped
impl TryFrom<BrowserProtocolEvents> for ShadowRootPopped
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, <ShadowRootPopped as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <ShadowRootPopped as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<DomEvents> for ShadowRootPopped
impl TryFrom<DomEvents> for ShadowRootPopped
Source§impl TryFrom<Event> for ShadowRootPopped
impl TryFrom<Event> for ShadowRootPopped
impl StructuralPartialEq for ShadowRootPopped
Auto Trait Implementations§
impl Freeze for ShadowRootPopped
impl RefUnwindSafe for ShadowRootPopped
impl Send for ShadowRootPopped
impl Sync for ShadowRootPopped
impl Unpin for ShadowRootPopped
impl UnsafeUnpin for ShadowRootPopped
impl UnwindSafe for ShadowRootPopped
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