pub struct AdoptedStyleSheetsModifiedParams {
pub node_id: Box<NodeId>,
pub adopted_style_sheets: Vec<StyleSheetId>,
}Expand description
Fired when Element’s adoptedStyleSheets are modified.
adoptedStyleSheetsModified
Fields§
§node_id: Box<NodeId>Id of the node that has changed.
adopted_style_sheets: Vec<StyleSheetId>New adoptedStyleSheets array.
Trait Implementations§
Source§impl Clone for AdoptedStyleSheetsModifiedParams
impl Clone for AdoptedStyleSheetsModifiedParams
Source§fn clone(&self) -> AdoptedStyleSheetsModifiedParams
fn clone(&self) -> AdoptedStyleSheetsModifiedParams
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<'de> Deserialize<'de> for AdoptedStyleSheetsModifiedParams
impl<'de> Deserialize<'de> for AdoptedStyleSheetsModifiedParams
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 AdoptedStyleSheetsModifiedParams
impl PartialEq for AdoptedStyleSheetsModifiedParams
Source§fn eq(&self, other: &AdoptedStyleSheetsModifiedParams) -> bool
fn eq(&self, other: &AdoptedStyleSheetsModifiedParams) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AdoptedStyleSheetsModifiedParams
Auto Trait Implementations§
impl Freeze for AdoptedStyleSheetsModifiedParams
impl RefUnwindSafe for AdoptedStyleSheetsModifiedParams
impl Send for AdoptedStyleSheetsModifiedParams
impl Sync for AdoptedStyleSheetsModifiedParams
impl Unpin for AdoptedStyleSheetsModifiedParams
impl UnsafeUnpin for AdoptedStyleSheetsModifiedParams
impl UnwindSafe for AdoptedStyleSheetsModifiedParams
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