pub struct GetMatchedStylesForNodeReturnObject {
pub inline_style: Option<CSSStyle>,
pub attributes_style: Option<CSSStyle>,
pub matched_css_rules: Option<Vec<RuleMatch>>,
pub pseudo_elements: Option<Vec<PseudoElementMatches>>,
pub inherited: Option<Vec<InheritedStyleEntry>>,
pub css_keyframes_rules: Option<Vec<CSSKeyframesRule>>,
}
Fields§
§inline_style: Option<CSSStyle>
§attributes_style: Option<CSSStyle>
§matched_css_rules: Option<Vec<RuleMatch>>
§pseudo_elements: Option<Vec<PseudoElementMatches>>
§inherited: Option<Vec<InheritedStyleEntry>>
§css_keyframes_rules: Option<Vec<CSSKeyframesRule>>
Trait Implementations§
source§impl Clone for GetMatchedStylesForNodeReturnObject
impl Clone for GetMatchedStylesForNodeReturnObject
source§fn clone(&self) -> GetMatchedStylesForNodeReturnObject
fn clone(&self) -> GetMatchedStylesForNodeReturnObject
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<'de> Deserialize<'de> for GetMatchedStylesForNodeReturnObject
impl<'de> Deserialize<'de> for GetMatchedStylesForNodeReturnObject
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 PartialEq for GetMatchedStylesForNodeReturnObject
impl PartialEq for GetMatchedStylesForNodeReturnObject
source§fn eq(&self, other: &GetMatchedStylesForNodeReturnObject) -> bool
fn eq(&self, other: &GetMatchedStylesForNodeReturnObject) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetMatchedStylesForNodeReturnObject
Auto Trait Implementations§
impl RefUnwindSafe for GetMatchedStylesForNodeReturnObject
impl Send for GetMatchedStylesForNodeReturnObject
impl Sync for GetMatchedStylesForNodeReturnObject
impl Unpin for GetMatchedStylesForNodeReturnObject
impl UnwindSafe for GetMatchedStylesForNodeReturnObject
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