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