pub struct EventInlineStyleInvalidated {
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.
Implementations§
Source§impl EventInlineStyleInvalidated
impl EventInlineStyleInvalidated
pub const IDENTIFIER: &'static str = "DOM.inlineStyleInvalidated"
Trait Implementations§
Source§impl Clone for EventInlineStyleInvalidated
impl Clone for EventInlineStyleInvalidated
Source§fn clone(&self) -> EventInlineStyleInvalidated
fn clone(&self) -> EventInlineStyleInvalidated
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 EventInlineStyleInvalidated
impl Debug for EventInlineStyleInvalidated
Source§impl<'de> Deserialize<'de> for EventInlineStyleInvalidated
impl<'de> Deserialize<'de> for EventInlineStyleInvalidated
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<EventInlineStyleInvalidated> for CdpEvent
impl From<EventInlineStyleInvalidated> for CdpEvent
Source§fn from(el: EventInlineStyleInvalidated) -> CdpEvent
fn from(el: EventInlineStyleInvalidated) -> CdpEvent
Converts to this type from the input type.
Source§impl IntoEventKind for EventInlineStyleInvalidated
impl IntoEventKind for EventInlineStyleInvalidated
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 EventInlineStyleInvalidated
impl Method for EventInlineStyleInvalidated
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:
removeNodeimpl StructuralPartialEq for EventInlineStyleInvalidated
Auto Trait Implementations§
impl Freeze for EventInlineStyleInvalidated
impl RefUnwindSafe for EventInlineStyleInvalidated
impl Send for EventInlineStyleInvalidated
impl Sync for EventInlineStyleInvalidated
impl Unpin for EventInlineStyleInvalidated
impl UnwindSafe for EventInlineStyleInvalidated
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