pub struct AttributeModifiedParams {
pub node_id: Box<NodeId>,
pub name: String,
pub value: String,
}Expand description
Fired when Element’s attribute is modified.
attributeModified
Fields§
§node_id: Box<NodeId>Id of the node that has changed.
name: StringAttribute name.
value: StringAttribute value.
Trait Implementations§
Source§impl Clone for AttributeModifiedParams
impl Clone for AttributeModifiedParams
Source§fn clone(&self) -> AttributeModifiedParams
fn clone(&self) -> AttributeModifiedParams
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 AttributeModifiedParams
impl Debug for AttributeModifiedParams
Source§impl<'de> Deserialize<'de> for AttributeModifiedParams
impl<'de> Deserialize<'de> for AttributeModifiedParams
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 PartialEq for AttributeModifiedParams
impl PartialEq for AttributeModifiedParams
Source§impl Serialize for AttributeModifiedParams
impl Serialize for AttributeModifiedParams
impl StructuralPartialEq for AttributeModifiedParams
Auto Trait Implementations§
impl Freeze for AttributeModifiedParams
impl RefUnwindSafe for AttributeModifiedParams
impl Send for AttributeModifiedParams
impl Sync for AttributeModifiedParams
impl Unpin for AttributeModifiedParams
impl UnsafeUnpin for AttributeModifiedParams
impl UnwindSafe for AttributeModifiedParams
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