pub struct AttributeModified {
pub method: AttributeModifiedMethod,
pub params: AttributeModifiedParams,
}Expand description
Fired when Element’s attribute is modified.
attributeModified
Fields§
§method: AttributeModifiedMethod§params: AttributeModifiedParamsImplementations§
Source§impl AttributeModified
impl AttributeModified
pub const IDENTIFIER: &'static str = "DOM.attributeModified"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for AttributeModified
impl Clone for AttributeModified
Source§fn clone(&self) -> AttributeModified
fn clone(&self) -> AttributeModified
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 AttributeModified
impl Debug for AttributeModified
Source§impl<'de> Deserialize<'de> for AttributeModified
impl<'de> Deserialize<'de> for AttributeModified
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<AttributeModified> for BrowserProtocolEvents
impl From<AttributeModified> for BrowserProtocolEvents
Source§fn from(v: AttributeModified) -> Self
fn from(v: AttributeModified) -> Self
Converts to this type from the input type.
Source§impl From<AttributeModified> for DomEvents
impl From<AttributeModified> for DomEvents
Source§fn from(v: AttributeModified) -> Self
fn from(v: AttributeModified) -> Self
Converts to this type from the input type.
Source§impl From<AttributeModified> for Event
impl From<AttributeModified> for Event
Source§fn from(v: AttributeModified) -> Self
fn from(v: AttributeModified) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AttributeModified
impl PartialEq for AttributeModified
Source§impl Serialize for AttributeModified
impl Serialize for AttributeModified
Source§impl TryFrom<BrowserProtocolEvents> for AttributeModified
impl TryFrom<BrowserProtocolEvents> for AttributeModified
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, <AttributeModified as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <AttributeModified as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<DomEvents> for AttributeModified
impl TryFrom<DomEvents> for AttributeModified
Source§impl TryFrom<Event> for AttributeModified
impl TryFrom<Event> for AttributeModified
impl StructuralPartialEq for AttributeModified
Auto Trait Implementations§
impl Freeze for AttributeModified
impl RefUnwindSafe for AttributeModified
impl Send for AttributeModified
impl Sync for AttributeModified
impl Unpin for AttributeModified
impl UnsafeUnpin for AttributeModified
impl UnwindSafe for AttributeModified
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