pub struct StyleSheetChanged {
pub method: StyleSheetChangedMethod,
pub params: StyleSheetChangedParams,
}Expand description
Fired whenever a stylesheet is changed as a result of the client operation. styleSheetChanged
Fields§
§method: StyleSheetChangedMethod§params: StyleSheetChangedParamsImplementations§
Source§impl StyleSheetChanged
impl StyleSheetChanged
pub const IDENTIFIER: &'static str = "CSS.styleSheetChanged"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for StyleSheetChanged
impl Clone for StyleSheetChanged
Source§fn clone(&self) -> StyleSheetChanged
fn clone(&self) -> StyleSheetChanged
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 StyleSheetChanged
impl Debug for StyleSheetChanged
Source§impl<'de> Deserialize<'de> for StyleSheetChanged
impl<'de> Deserialize<'de> for StyleSheetChanged
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<StyleSheetChanged> for BrowserProtocolEvents
impl From<StyleSheetChanged> for BrowserProtocolEvents
Source§fn from(v: StyleSheetChanged) -> Self
fn from(v: StyleSheetChanged) -> Self
Converts to this type from the input type.
Source§impl From<StyleSheetChanged> for CssEvents
impl From<StyleSheetChanged> for CssEvents
Source§fn from(v: StyleSheetChanged) -> Self
fn from(v: StyleSheetChanged) -> Self
Converts to this type from the input type.
Source§impl From<StyleSheetChanged> for Event
impl From<StyleSheetChanged> for Event
Source§fn from(v: StyleSheetChanged) -> Self
fn from(v: StyleSheetChanged) -> Self
Converts to this type from the input type.
Source§impl PartialEq for StyleSheetChanged
impl PartialEq for StyleSheetChanged
Source§impl Serialize for StyleSheetChanged
impl Serialize for StyleSheetChanged
Source§impl TryFrom<BrowserProtocolEvents> for StyleSheetChanged
impl TryFrom<BrowserProtocolEvents> for StyleSheetChanged
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, <StyleSheetChanged as TryFrom<BrowserProtocolEvents>>::Error>
fn try_from( e: BrowserProtocolEvents, ) -> Result<Self, <StyleSheetChanged as TryFrom<BrowserProtocolEvents>>::Error>
Performs the conversion.
Source§impl TryFrom<CssEvents> for StyleSheetChanged
impl TryFrom<CssEvents> for StyleSheetChanged
Source§impl TryFrom<Event> for StyleSheetChanged
impl TryFrom<Event> for StyleSheetChanged
impl StructuralPartialEq for StyleSheetChanged
Auto Trait Implementations§
impl Freeze for StyleSheetChanged
impl RefUnwindSafe for StyleSheetChanged
impl Send for StyleSheetChanged
impl Sync for StyleSheetChanged
impl Unpin for StyleSheetChanged
impl UnsafeUnpin for StyleSheetChanged
impl UnwindSafe for StyleSheetChanged
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