pub struct EventAttributeRemoved {
pub node_id: NodeId,
pub name: String,
}Expand description
Fired when Element’s attribute is removed.
attributeRemoved
Fields§
§node_id: NodeIdId of the node that has changed.
name: StringA ttribute name.
Implementations§
Source§impl EventAttributeRemoved
impl EventAttributeRemoved
pub const IDENTIFIER: &'static str = "DOM.attributeRemoved"
Trait Implementations§
Source§impl Clone for EventAttributeRemoved
impl Clone for EventAttributeRemoved
Source§fn clone(&self) -> EventAttributeRemoved
fn clone(&self) -> EventAttributeRemoved
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 EventAttributeRemoved
impl Debug for EventAttributeRemoved
Source§impl<'de> Deserialize<'de> for EventAttributeRemoved
impl<'de> Deserialize<'de> for EventAttributeRemoved
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<EventAttributeRemoved> for CdpEvent
impl From<EventAttributeRemoved> for CdpEvent
Source§fn from(el: EventAttributeRemoved) -> CdpEvent
fn from(el: EventAttributeRemoved) -> CdpEvent
Converts to this type from the input type.
Source§impl IntoEventKind for EventAttributeRemoved
impl IntoEventKind for EventAttributeRemoved
Source§fn event_kind() -> EventKindwhere
Self: Sized + 'static,
fn event_kind() -> EventKindwhere
Self: Sized + 'static,
What kind of event this type is
Source§impl Method for EventAttributeRemoved
impl Method for EventAttributeRemoved
Source§fn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like:
DOM.removeNodeSource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMSource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodeSource§impl MethodType for EventAttributeRemoved
impl MethodType for EventAttributeRemoved
Source§impl PartialEq for EventAttributeRemoved
impl PartialEq for EventAttributeRemoved
Source§impl Serialize for EventAttributeRemoved
impl Serialize for EventAttributeRemoved
Source§impl TryFrom<CdpEvent> for EventAttributeRemoved
impl TryFrom<CdpEvent> for EventAttributeRemoved
impl StructuralPartialEq for EventAttributeRemoved
Auto Trait Implementations§
impl Freeze for EventAttributeRemoved
impl RefUnwindSafe for EventAttributeRemoved
impl Send for EventAttributeRemoved
impl Sync for EventAttributeRemoved
impl Unpin for EventAttributeRemoved
impl UnwindSafe for EventAttributeRemoved
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