pub struct CollectClassNamesParams {
pub style_sheet_id: StyleSheetId,
}Expand description
Returns all class names from specified stylesheet. collectClassNames
Fields§
§style_sheet_id: StyleSheetIdImplementations§
Source§impl CollectClassNamesParams
impl CollectClassNamesParams
pub fn new(style_sheet_id: impl Into<StyleSheetId>) -> Self
Source§impl CollectClassNamesParams
impl CollectClassNamesParams
pub const IDENTIFIER: &'static str = "CSS.collectClassNames"
Trait Implementations§
Source§impl Clone for CollectClassNamesParams
impl Clone for CollectClassNamesParams
Source§fn clone(&self) -> CollectClassNamesParams
fn clone(&self) -> CollectClassNamesParams
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 Command for CollectClassNamesParams
impl Command for CollectClassNamesParams
Source§impl Debug for CollectClassNamesParams
impl Debug for CollectClassNamesParams
Source§impl<'de> Deserialize<'de> for CollectClassNamesParams
impl<'de> Deserialize<'de> for CollectClassNamesParams
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 Method for CollectClassNamesParams
impl Method for CollectClassNamesParams
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:
removeNodeSource§impl MethodType for CollectClassNamesParams
impl MethodType for CollectClassNamesParams
Source§impl PartialEq for CollectClassNamesParams
impl PartialEq for CollectClassNamesParams
Source§impl Serialize for CollectClassNamesParams
impl Serialize for CollectClassNamesParams
impl StructuralPartialEq for CollectClassNamesParams
Auto Trait Implementations§
impl Freeze for CollectClassNamesParams
impl RefUnwindSafe for CollectClassNamesParams
impl Send for CollectClassNamesParams
impl Sync for CollectClassNamesParams
impl Unpin for CollectClassNamesParams
impl UnwindSafe for CollectClassNamesParams
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