pub struct TakeComputedStyleUpdates {
pub method: TakeComputedStyleUpdatesMethod,
pub params: TakeComputedStyleUpdatesParams,
}Expand description
Polls the next batch of computed style updates. takeComputedStyleUpdates
Fields§
§method: TakeComputedStyleUpdatesMethod§params: TakeComputedStyleUpdatesParamsImplementations§
Source§impl TakeComputedStyleUpdates
impl TakeComputedStyleUpdates
pub const IDENTIFIER: &'static str = "CSS.takeComputedStyleUpdates"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for TakeComputedStyleUpdates
impl Clone for TakeComputedStyleUpdates
Source§fn clone(&self) -> TakeComputedStyleUpdates
fn clone(&self) -> TakeComputedStyleUpdates
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 TakeComputedStyleUpdates
impl CommandResult for TakeComputedStyleUpdates
type Result = TakeComputedStyleUpdatesResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for TakeComputedStyleUpdates
impl Debug for TakeComputedStyleUpdates
Source§impl<'de> Deserialize<'de> for TakeComputedStyleUpdates
impl<'de> Deserialize<'de> for TakeComputedStyleUpdates
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<TakeComputedStyleUpdates> for BrowserProtocolCommands
impl From<TakeComputedStyleUpdates> for BrowserProtocolCommands
Source§fn from(v: TakeComputedStyleUpdates) -> Self
fn from(v: TakeComputedStyleUpdates) -> Self
Converts to this type from the input type.
Source§impl From<TakeComputedStyleUpdates> for Command
impl From<TakeComputedStyleUpdates> for Command
Source§fn from(v: TakeComputedStyleUpdates) -> Self
fn from(v: TakeComputedStyleUpdates) -> Self
Converts to this type from the input type.
Source§impl From<TakeComputedStyleUpdates> for CssCommands
impl From<TakeComputedStyleUpdates> for CssCommands
Source§fn from(v: TakeComputedStyleUpdates) -> Self
fn from(v: TakeComputedStyleUpdates) -> Self
Converts to this type from the input type.
Source§impl PartialEq for TakeComputedStyleUpdates
impl PartialEq for TakeComputedStyleUpdates
Source§impl Serialize for TakeComputedStyleUpdates
impl Serialize for TakeComputedStyleUpdates
Source§impl TryFrom<BrowserProtocolCommands> for TakeComputedStyleUpdates
impl TryFrom<BrowserProtocolCommands> for TakeComputedStyleUpdates
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, <TakeComputedStyleUpdates as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <TakeComputedStyleUpdates as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for TakeComputedStyleUpdates
impl TryFrom<Command> for TakeComputedStyleUpdates
Source§impl TryFrom<CssCommands> for TakeComputedStyleUpdates
impl TryFrom<CssCommands> for TakeComputedStyleUpdates
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, <TakeComputedStyleUpdates as TryFrom<CssCommands>>::Error>
fn try_from( e: CssCommands, ) -> Result<Self, <TakeComputedStyleUpdates as TryFrom<CssCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for TakeComputedStyleUpdates
Auto Trait Implementations§
impl Freeze for TakeComputedStyleUpdates
impl RefUnwindSafe for TakeComputedStyleUpdates
impl Send for TakeComputedStyleUpdates
impl Sync for TakeComputedStyleUpdates
impl Unpin for TakeComputedStyleUpdates
impl UnsafeUnpin for TakeComputedStyleUpdates
impl UnwindSafe for TakeComputedStyleUpdates
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