pub struct ForceStartingStyle {
pub method: ForceStartingStyleMethod,
pub params: ForceStartingStyleParams,
}Expand description
Ensures that the given node is in its starting-style state. forceStartingStyle
Fields§
§method: ForceStartingStyleMethod§params: ForceStartingStyleParamsImplementations§
Source§impl ForceStartingStyle
impl ForceStartingStyle
pub fn builder() -> ForceStartingStyleBuilder
Source§impl ForceStartingStyle
impl ForceStartingStyle
pub const IDENTIFIER: &'static str = "CSS.forceStartingStyle"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for ForceStartingStyle
impl Clone for ForceStartingStyle
Source§fn clone(&self) -> ForceStartingStyle
fn clone(&self) -> ForceStartingStyle
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 ForceStartingStyle
impl CommandResult for ForceStartingStyle
type Result = ForceStartingStyleResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for ForceStartingStyle
impl Debug for ForceStartingStyle
Source§impl<'de> Deserialize<'de> for ForceStartingStyle
impl<'de> Deserialize<'de> for ForceStartingStyle
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<ForceStartingStyle> for BrowserProtocolCommands
impl From<ForceStartingStyle> for BrowserProtocolCommands
Source§fn from(v: ForceStartingStyle) -> Self
fn from(v: ForceStartingStyle) -> Self
Converts to this type from the input type.
Source§impl From<ForceStartingStyle> for Command
impl From<ForceStartingStyle> for Command
Source§fn from(v: ForceStartingStyle) -> Self
fn from(v: ForceStartingStyle) -> Self
Converts to this type from the input type.
Source§impl From<ForceStartingStyle> for CssCommands
impl From<ForceStartingStyle> for CssCommands
Source§fn from(v: ForceStartingStyle) -> Self
fn from(v: ForceStartingStyle) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ForceStartingStyle
impl PartialEq for ForceStartingStyle
Source§impl Serialize for ForceStartingStyle
impl Serialize for ForceStartingStyle
Source§impl TryFrom<BrowserProtocolCommands> for ForceStartingStyle
impl TryFrom<BrowserProtocolCommands> for ForceStartingStyle
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, <ForceStartingStyle as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <ForceStartingStyle as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for ForceStartingStyle
impl TryFrom<Command> for ForceStartingStyle
Source§impl TryFrom<CssCommands> for ForceStartingStyle
impl TryFrom<CssCommands> for ForceStartingStyle
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, <ForceStartingStyle as TryFrom<CssCommands>>::Error>
fn try_from( e: CssCommands, ) -> Result<Self, <ForceStartingStyle as TryFrom<CssCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for ForceStartingStyle
Auto Trait Implementations§
impl Freeze for ForceStartingStyle
impl RefUnwindSafe for ForceStartingStyle
impl Send for ForceStartingStyle
impl Sync for ForceStartingStyle
impl Unpin for ForceStartingStyle
impl UnsafeUnpin for ForceStartingStyle
impl UnwindSafe for ForceStartingStyle
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