pub struct GetMatchedStylesForNodeReturnsBuilder { /* private fields */ }
Implementations§
Source§impl GetMatchedStylesForNodeReturnsBuilder
impl GetMatchedStylesForNodeReturnsBuilder
pub fn inline_style( self, inline_style: impl Into<CssStyle>, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn attributes_style( self, attributes_style: impl Into<CssStyle>, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn matched_css_rule( self, matched_css_rule: impl Into<RuleMatch>, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn matched_css_rules<I, S>( self, matched_css_rules: I, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn pseudo_element( self, pseudo_element: impl Into<PseudoElementMatches>, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn pseudo_elements<I, S>( self, pseudo_elements: I, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn inherited( self, inherited: impl Into<InheritedStyleEntry>, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn inheriteds<I, S>( self, inheriteds: I, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn inherited_pseudo_element( self, inherited_pseudo_element: impl Into<InheritedPseudoElementMatches>, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn inherited_pseudo_elements<I, S>( self, inherited_pseudo_elements: I, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn css_keyframes_rule( self, css_keyframes_rule: impl Into<CssKeyframesRule>, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn css_keyframes_rules<I, S>( self, css_keyframes_rules: I, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn css_position_try_rule( self, css_position_try_rule: impl Into<CssPositionTryRule>, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn css_position_try_rules<I, S>( self, css_position_try_rules: I, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn active_position_fallback_index( self, active_position_fallback_index: impl Into<i64>, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn css_property_rule( self, css_property_rule: impl Into<CssPropertyRule>, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn css_property_rules<I, S>( self, css_property_rules: I, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn css_property_registration( self, css_property_registration: impl Into<CssPropertyRegistration>, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn css_property_registrations<I, S>( self, css_property_registrations: I, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn css_font_palette_values_rule( self, css_font_palette_values_rule: impl Into<CssFontPaletteValuesRule>, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn parent_layout_node_id( self, parent_layout_node_id: impl Into<NodeId>, ) -> GetMatchedStylesForNodeReturnsBuilder
pub fn build(self) -> GetMatchedStylesForNodeReturns
Trait Implementations§
Source§impl Clone for GetMatchedStylesForNodeReturnsBuilder
impl Clone for GetMatchedStylesForNodeReturnsBuilder
Source§fn clone(&self) -> GetMatchedStylesForNodeReturnsBuilder
fn clone(&self) -> GetMatchedStylesForNodeReturnsBuilder
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 GetMatchedStylesForNodeReturnsBuilder
impl Default for GetMatchedStylesForNodeReturnsBuilder
Source§fn default() -> GetMatchedStylesForNodeReturnsBuilder
fn default() -> GetMatchedStylesForNodeReturnsBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetMatchedStylesForNodeReturnsBuilder
impl RefUnwindSafe for GetMatchedStylesForNodeReturnsBuilder
impl Send for GetMatchedStylesForNodeReturnsBuilder
impl Sync for GetMatchedStylesForNodeReturnsBuilder
impl Unpin for GetMatchedStylesForNodeReturnsBuilder
impl UnwindSafe for GetMatchedStylesForNodeReturnsBuilder
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more