pub struct GetComputedStyleForNodeReturns {
pub computedStyle: Vec<CSSComputedStyleProperty>,
pub extraFields: ComputedStyleExtraFields,
}Expand description
Returns the computed style for a DOM node identified by ‘nodeId’.
Fields§
§computedStyle: Vec<CSSComputedStyleProperty>Computed style for the specified DOM node.
extraFields: ComputedStyleExtraFieldsA list of non-standard “extra fields” which blink stores alongside each computed style.
Trait Implementations§
Source§impl Clone for GetComputedStyleForNodeReturns
impl Clone for GetComputedStyleForNodeReturns
Source§fn clone(&self) -> GetComputedStyleForNodeReturns
fn clone(&self) -> GetComputedStyleForNodeReturns
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 Default for GetComputedStyleForNodeReturns
impl Default for GetComputedStyleForNodeReturns
Source§fn default() -> GetComputedStyleForNodeReturns
fn default() -> GetComputedStyleForNodeReturns
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetComputedStyleForNodeReturns
impl<'de> Deserialize<'de> for GetComputedStyleForNodeReturns
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
Auto Trait Implementations§
impl Freeze for GetComputedStyleForNodeReturns
impl RefUnwindSafe for GetComputedStyleForNodeReturns
impl Send for GetComputedStyleForNodeReturns
impl Sync for GetComputedStyleForNodeReturns
impl Unpin for GetComputedStyleForNodeReturns
impl UnsafeUnpin for GetComputedStyleForNodeReturns
impl UnwindSafe for GetComputedStyleForNodeReturns
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