pub struct SetStyleTexts {
pub method: SetStyleTextsMethod,
pub params: SetStyleTextsParams,
}Expand description
Applies specified style edits one after another in the given order. setStyleTexts
Fields§
§method: SetStyleTextsMethod§params: SetStyleTextsParamsImplementations§
Source§impl SetStyleTexts
impl SetStyleTexts
pub fn builder() -> SetStyleTextsBuilder
Source§impl SetStyleTexts
impl SetStyleTexts
pub const IDENTIFIER: &'static str = "CSS.setStyleTexts"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetStyleTexts
impl Clone for SetStyleTexts
Source§fn clone(&self) -> SetStyleTexts
fn clone(&self) -> SetStyleTexts
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 SetStyleTexts
impl CommandResult for SetStyleTexts
type Result = SetStyleTextsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetStyleTexts
impl Debug for SetStyleTexts
Source§impl<'de> Deserialize<'de> for SetStyleTexts
impl<'de> Deserialize<'de> for SetStyleTexts
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<SetStyleTexts> for BrowserProtocolCommands
impl From<SetStyleTexts> for BrowserProtocolCommands
Source§fn from(v: SetStyleTexts) -> Self
fn from(v: SetStyleTexts) -> Self
Converts to this type from the input type.
Source§impl From<SetStyleTexts> for Command
impl From<SetStyleTexts> for Command
Source§fn from(v: SetStyleTexts) -> Self
fn from(v: SetStyleTexts) -> Self
Converts to this type from the input type.
Source§impl From<SetStyleTexts> for CssCommands
impl From<SetStyleTexts> for CssCommands
Source§fn from(v: SetStyleTexts) -> Self
fn from(v: SetStyleTexts) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetStyleTexts
impl PartialEq for SetStyleTexts
Source§impl Serialize for SetStyleTexts
impl Serialize for SetStyleTexts
Source§impl TryFrom<BrowserProtocolCommands> for SetStyleTexts
impl TryFrom<BrowserProtocolCommands> for SetStyleTexts
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, <SetStyleTexts as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetStyleTexts as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetStyleTexts
impl TryFrom<Command> for SetStyleTexts
Source§impl TryFrom<CssCommands> for SetStyleTexts
impl TryFrom<CssCommands> for SetStyleTexts
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, <SetStyleTexts as TryFrom<CssCommands>>::Error>
fn try_from( e: CssCommands, ) -> Result<Self, <SetStyleTexts as TryFrom<CssCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetStyleTexts
Auto Trait Implementations§
impl Freeze for SetStyleTexts
impl RefUnwindSafe for SetStyleTexts
impl Send for SetStyleTexts
impl Sync for SetStyleTexts
impl Unpin for SetStyleTexts
impl UnsafeUnpin for SetStyleTexts
impl UnwindSafe for SetStyleTexts
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