pub struct CollectClassNames {
pub method: CollectClassNamesMethod,
pub params: CollectClassNamesParams,
}Expand description
Returns all class names from specified stylesheet. collectClassNames
Fields§
§method: CollectClassNamesMethod§params: CollectClassNamesParamsImplementations§
Source§impl CollectClassNames
impl CollectClassNames
pub fn builder() -> CollectClassNamesBuilder
Source§impl CollectClassNames
impl CollectClassNames
pub const IDENTIFIER: &'static str = "CSS.collectClassNames"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for CollectClassNames
impl Clone for CollectClassNames
Source§fn clone(&self) -> CollectClassNames
fn clone(&self) -> CollectClassNames
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 CommandResult for CollectClassNames
impl CommandResult for CollectClassNames
type Result = CollectClassNamesResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for CollectClassNames
impl Debug for CollectClassNames
Source§impl<'de> Deserialize<'de> for CollectClassNames
impl<'de> Deserialize<'de> for CollectClassNames
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<CollectClassNames> for BrowserProtocolCommands
impl From<CollectClassNames> for BrowserProtocolCommands
Source§fn from(v: CollectClassNames) -> Self
fn from(v: CollectClassNames) -> Self
Converts to this type from the input type.
Source§impl From<CollectClassNames> for Command
impl From<CollectClassNames> for Command
Source§fn from(v: CollectClassNames) -> Self
fn from(v: CollectClassNames) -> Self
Converts to this type from the input type.
Source§impl From<CollectClassNames> for CssCommands
impl From<CollectClassNames> for CssCommands
Source§fn from(v: CollectClassNames) -> Self
fn from(v: CollectClassNames) -> Self
Converts to this type from the input type.
Source§impl PartialEq for CollectClassNames
impl PartialEq for CollectClassNames
Source§impl Serialize for CollectClassNames
impl Serialize for CollectClassNames
Source§impl TryFrom<BrowserProtocolCommands> for CollectClassNames
impl TryFrom<BrowserProtocolCommands> for CollectClassNames
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <CollectClassNames as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <CollectClassNames as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for CollectClassNames
impl TryFrom<Command> for CollectClassNames
Source§impl TryFrom<CssCommands> for CollectClassNames
impl TryFrom<CssCommands> for CollectClassNames
Source§type Error = CssCommands
type Error = CssCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: CssCommands,
) -> Result<Self, <CollectClassNames as TryFrom<CssCommands>>::Error>
fn try_from( e: CssCommands, ) -> Result<Self, <CollectClassNames as TryFrom<CssCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for CollectClassNames
Auto Trait Implementations§
impl Freeze for CollectClassNames
impl RefUnwindSafe for CollectClassNames
impl Send for CollectClassNames
impl Sync for CollectClassNames
impl Unpin for CollectClassNames
impl UnsafeUnpin for CollectClassNames
impl UnwindSafe for CollectClassNames
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