Struct chromiumoxide::cdp::browser_protocol::css::CreateStyleSheetParams
source · pub struct CreateStyleSheetParams {
pub frame_id: FrameId,
}Expand description
Creates a new special “via-inspector” stylesheet in the frame with given frameId.
createStyleSheet
Fields§
§frame_id: FrameIdIdentifier of the frame where “via-inspector” stylesheet should be created.
Implementations§
source§impl CreateStyleSheetParams
impl CreateStyleSheetParams
pub fn new(frame_id: impl Into<FrameId>) -> CreateStyleSheetParams
source§impl CreateStyleSheetParams
impl CreateStyleSheetParams
pub fn builder() -> CreateStyleSheetParamsBuilder
source§impl CreateStyleSheetParams
impl CreateStyleSheetParams
pub const IDENTIFIER: &'static str = "CSS.createStyleSheet"
Trait Implementations§
source§impl Clone for CreateStyleSheetParams
impl Clone for CreateStyleSheetParams
source§fn clone(&self) -> CreateStyleSheetParams
fn clone(&self) -> CreateStyleSheetParams
Returns a copy 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 CreateStyleSheetParams
impl Command for CreateStyleSheetParams
§type Response = CreateStyleSheetReturns
type Response = CreateStyleSheetReturns
The type of the response this request triggers on the chromium server
source§impl Debug for CreateStyleSheetParams
impl Debug for CreateStyleSheetParams
source§impl<'de> Deserialize<'de> for CreateStyleSheetParams
impl<'de> Deserialize<'de> for CreateStyleSheetParams
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<CreateStyleSheetParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<CreateStyleSheetParams, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Method for CreateStyleSheetParams
impl Method for CreateStyleSheetParams
source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
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 CreateStyleSheetParams
impl MethodType for CreateStyleSheetParams
source§impl PartialEq<CreateStyleSheetParams> for CreateStyleSheetParams
impl PartialEq<CreateStyleSheetParams> for CreateStyleSheetParams
source§fn eq(&self, other: &CreateStyleSheetParams) -> bool
fn eq(&self, other: &CreateStyleSheetParams) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for CreateStyleSheetParams
impl Serialize for CreateStyleSheetParams
source§fn 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