pub struct InlineStyleInvalidatedParams {
pub node_ids: Vec<NodeId>,
}Expand description
Fired when Element’s inline style is modified via a CSS property modification.
inlineStyleInvalidated
Fields§
§node_ids: Vec<NodeId>Ids of the nodes for which the inline styles have been invalidated.
Trait Implementations§
Source§impl Clone for InlineStyleInvalidatedParams
impl Clone for InlineStyleInvalidatedParams
Source§fn clone(&self) -> InlineStyleInvalidatedParams
fn clone(&self) -> InlineStyleInvalidatedParams
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 InlineStyleInvalidatedParams
impl Debug for InlineStyleInvalidatedParams
Source§impl<'de> Deserialize<'de> for InlineStyleInvalidatedParams
impl<'de> Deserialize<'de> for InlineStyleInvalidatedParams
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 InlineStyleInvalidatedParams
impl PartialEq for InlineStyleInvalidatedParams
Source§fn eq(&self, other: &InlineStyleInvalidatedParams) -> bool
fn eq(&self, other: &InlineStyleInvalidatedParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InlineStyleInvalidatedParams
Auto Trait Implementations§
impl Freeze for InlineStyleInvalidatedParams
impl RefUnwindSafe for InlineStyleInvalidatedParams
impl Send for InlineStyleInvalidatedParams
impl Sync for InlineStyleInvalidatedParams
impl Unpin for InlineStyleInvalidatedParams
impl UnsafeUnpin for InlineStyleInvalidatedParams
impl UnwindSafe for InlineStyleInvalidatedParams
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