Struct chromiumoxide::cdp::browser_protocol::css::EventStyleSheetRemoved
source · [−]pub struct EventStyleSheetRemoved {
pub style_sheet_id: StyleSheetId,
}
Expand description
Fired whenever an active document stylesheet is removed. styleSheetRemoved
Fields
style_sheet_id: StyleSheetId
Identifier of the removed stylesheet.
Implementations
sourceimpl EventStyleSheetRemoved
impl EventStyleSheetRemoved
pub const IDENTIFIER: &'static str = "CSS.styleSheetRemoved"
Trait Implementations
sourceimpl Clone for EventStyleSheetRemoved
impl Clone for EventStyleSheetRemoved
sourcefn clone(&self) -> EventStyleSheetRemoved
fn clone(&self) -> EventStyleSheetRemoved
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for EventStyleSheetRemoved
impl Debug for EventStyleSheetRemoved
sourceimpl<'de> Deserialize<'de> for EventStyleSheetRemoved
impl<'de> Deserialize<'de> for EventStyleSheetRemoved
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<EventStyleSheetRemoved, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<EventStyleSheetRemoved, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl From<EventStyleSheetRemoved> for CdpEvent
impl From<EventStyleSheetRemoved> for CdpEvent
sourcefn from(el: EventStyleSheetRemoved) -> CdpEvent
fn from(el: EventStyleSheetRemoved) -> CdpEvent
Converts to this type from the input type.
sourceimpl IntoEventKind for EventStyleSheetRemoved
impl IntoEventKind for EventStyleSheetRemoved
sourcefn event_kind() -> EventKindwhere
EventStyleSheetRemoved: 'static + Sized,
fn event_kind() -> EventKindwhere
EventStyleSheetRemoved: 'static + Sized,
What kind of event this type is
sourceimpl Method for EventStyleSheetRemoved
impl Method for EventStyleSheetRemoved
sourcefn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNode
sourcefn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOM
sourcefn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNode
sourceimpl MethodType for EventStyleSheetRemoved
impl MethodType for EventStyleSheetRemoved
sourceimpl PartialEq<EventStyleSheetRemoved> for EventStyleSheetRemoved
impl PartialEq<EventStyleSheetRemoved> for EventStyleSheetRemoved
sourcefn eq(&self, other: &EventStyleSheetRemoved) -> bool
fn eq(&self, other: &EventStyleSheetRemoved) -> bool
sourceimpl Serialize for EventStyleSheetRemoved
impl Serialize for EventStyleSheetRemoved
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
sourceimpl TryFrom<CdpEvent> for EventStyleSheetRemoved
impl TryFrom<CdpEvent> for EventStyleSheetRemoved
impl StructuralPartialEq for EventStyleSheetRemoved
Auto Trait Implementations
impl RefUnwindSafe for EventStyleSheetRemoved
impl Send for EventStyleSheetRemoved
impl Sync for EventStyleSheetRemoved
impl Unpin for EventStyleSheetRemoved
impl UnwindSafe for EventStyleSheetRemoved
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more