swc_css_visit

Trait VisitWith

Source
pub trait VisitWith<V: ?Sized + Visit> {
    // Required methods
    fn visit_with(&self, visitor: &mut V);
    fn visit_children_with(&self, visitor: &mut V);
}
Expand description

A trait implemented for types that can be visited using a visitor.

Required Methods§

Source

fn visit_with(&self, visitor: &mut V)

Calls a visitor method (visitor.fold_xxx) with self.

Source

fn visit_children_with(&self, visitor: &mut V)

Visit children nodes of self`` with visitor`.

Implementations on Foreign Types§

Source§

impl<V, T> VisitWith<V> for Box<T>
where V: ?Sized + Visit, T: VisitWith<V>,

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V, T> VisitWith<V> for Vec<T>
where V: ?Sized + Visit, [T]: VisitWith<V>,

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<ContainerName>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_container_name with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<MediaType>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_media_type with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<AttributeSelectorValue>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_attribute_selector_value with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Namespace>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_namespace with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<AtRulePrelude>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_at_rule_prelude with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<ImportLayerName>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_import_layer_name with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<MediaConditionType>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_media_condition_type with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<TypeSelector>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_type_selector with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<UrlValue>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_url_value with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<ImportConditions>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_import_conditions with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<MediaQueryList>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_media_query_list with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<Function>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_function with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Vec<PseudoClassSelectorChildren>>

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Vec<PseudoElementSelectorChildren>>

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Vec<UrlModifier>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_url_modifiers with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Vec<PageSelectorPseudo>>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_page_selector_pseudos with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Atom>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_atom with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<PageSelectorType>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_page_selector_type with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<ImportantFlag>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_important_flag with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<SimpleBlock>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_simple_block with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<AttributeSelectorMatcher>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_attribute_selector_matcher with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<AttributeSelectorModifier>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_attribute_selector_modifier with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Combinator>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_combinator with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<ForgivingSelectorList>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_forgiving_selector_list with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<NamespacePrefix>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_namespace_prefix with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<NestingSelector>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_nesting_selector with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Ident>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_ident with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Option<Number>

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_opt_number with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AtRuleName

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_at_rule_name with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AtRulePrelude

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ColorProfileName

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ContainerName

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_container_name with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ContainerQueryType

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CustomMediaQueryMediaType

Source§

impl<V: ?Sized + Visit> VisitWith<V> for DocumentPreludeMatchingFunction

Source§

impl<V: ?Sized + Visit> VisitWith<V> for GeneralEnclosed

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ImportHref

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_import_href with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ImportLayerName

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for KeyframeSelector

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for KeyframesName

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_keyframes_name with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for LayerPrelude

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_layer_prelude with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaConditionAllType

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaConditionType

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaConditionWithoutOrType

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaFeature

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_media_feature with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureName

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureRangeComparison

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureValue

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaInParens

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaType

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_media_type with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for NamespacePreludeUri

Source§

impl<V: ?Sized + Visit> VisitWith<V> for QueryInParens

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SizeFeature

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_size_feature with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureName

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureRangeComparison

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureValue

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SupportsConditionType

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SupportsFeature

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SupportsInParens

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ComponentValue

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for DeclarationName

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for DeclarationOrAtRule

Source§

impl<V: ?Sized + Visit> VisitWith<V> for FunctionName

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_function_name with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for QualifiedRulePrelude

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Rule

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_rule with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for StyleBlock

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_style_block with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AnPlusB

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_an_plus_b with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AttributeSelectorMatcherValue

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AttributeSelectorValue

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CombinatorValue

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ComplexSelectorChildren

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ForgivingComplexSelector

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ForgivingRelativeSelector

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Namespace

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_namespace with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for PseudoClassSelectorChildren

Source§

impl<V: ?Sized + Visit> VisitWith<V> for PseudoElementSelectorChildren

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SubclassSelector

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TypeSelector

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_type_selector with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for NumberType

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_number_type with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Token

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_token with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AbsoluteColorBase

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AlphaValue

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_alpha_value with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AnglePercentage

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for BinOp

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_bin_op with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CalcOperatorType

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CalcProductOrOperator

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CalcValue

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_calc_value with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CalcValueOrOperator

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CmykComponent

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_cmyk_component with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Color

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_color with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for DelimiterValue

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Dimension

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_dimension with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for FamilyName

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_family_name with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for FrequencyPercentage

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Hue

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_hue with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for LengthPercentage

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TimePercentage

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for UrlModifier

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_url_modifier with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for UrlValue

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_url_value with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Atom

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_atom with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Span

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_span with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AtRule

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_at_rule with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ContainerCondition

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ContainerQuery

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ContainerQueryAnd

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ContainerQueryNot

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ContainerQueryOr

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CustomMediaQuery

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for DocumentPrelude

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ExtensionName

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_extension_name with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for FontFeatureValuesPrelude

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ImportConditions

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ImportPrelude

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_import_prelude with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for KeyframeBlock

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_keyframe_block with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for KeyframesPseudoFunction

Source§

impl<V: ?Sized + Visit> VisitWith<V> for KeyframesPseudoPrefix

Source§

impl<V: ?Sized + Visit> VisitWith<V> for LayerName

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_layer_name with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for LayerNameList

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaAnd

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_media_and with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaCondition

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaConditionWithoutOr

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureBoolean

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaFeaturePlain

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureRange

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureRangeInterval

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaNot

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_media_not with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaOr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_media_or with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaQuery

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_media_query with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for MediaQueryList

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for NamespacePrelude

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for PageSelector

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_page_selector with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for PageSelectorList

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for PageSelectorPseudo

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for PageSelectorType

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ScopeRange

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_scope_range with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureBoolean

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SizeFeaturePlain

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureRange

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureRangeInterval

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SupportsAnd

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_supports_and with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SupportsCondition

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SupportsNot

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_supports_not with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SupportsOr

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_supports_or with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Declaration

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_declaration with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Function

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_function with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ImportantFlag

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_important_flag with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ListOfComponentValues

Source§

impl<V: ?Sized + Visit> VisitWith<V> for QualifiedRule

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_qualified_rule with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SimpleBlock

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_simple_block with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Stylesheet

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_stylesheet with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AnPlusBNotation

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AnyNamespace

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_any_namespace with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AttributeSelector

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AttributeSelectorMatcher

Source§

impl<V: ?Sized + Visit> VisitWith<V> for AttributeSelectorModifier

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ClassSelector

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_class_selector with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Combinator

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_combinator with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ComplexSelector

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CompoundSelector

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CompoundSelectorList

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CustomHighlightName

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ForgivingRelativeSelectorList

Source§

impl<V: ?Sized + Visit> VisitWith<V> for ForgivingSelectorList

Source§

impl<V: ?Sized + Visit> VisitWith<V> for IdSelector

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_id_selector with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for NamedNamespace

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for NamespacePrefix

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for NestingSelector

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for PseudoClassSelector

Source§

impl<V: ?Sized + Visit> VisitWith<V> for PseudoElementSelector

Source§

impl<V: ?Sized + Visit> VisitWith<V> for RelativeSelector

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for RelativeSelectorList

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SelectorList

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_selector_list with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TagNameSelector

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for UniversalSelector

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for WqName

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_wq_name with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for DimensionToken

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for TokenAndSpan

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_token_and_span with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for UrlKeyValue

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_url_key_value with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Angle

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_angle with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CalcOperator

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_calc_operator with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CalcProduct

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_calc_product with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CalcSum

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_calc_sum with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CustomIdent

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_custom_ident with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for CustomPropertyName

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for DashedIdent

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_dashed_ident with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Delimiter

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_delimiter with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Flex

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_flex with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Frequency

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_frequency with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for HexColor

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_hex_color with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Ident

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ident with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Integer

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_integer with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Length

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_length with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Number

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_number with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Percentage

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_percentage with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Ratio

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_ratio with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Resolution

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_resolution with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for SequenceOfCustomIdents

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Str

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_str with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Time

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_time with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for UnicodeRange

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_unicode_range with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for UnknownDimension

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for Url

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_url with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for UrlValueRaw

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_url_value_raw with self.

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [ContainerQueryType]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_container_query_types with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [DocumentPreludeMatchingFunction]

Source§

fn visit_with(&self, visitor: &mut V)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [KeyframeSelector]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_keyframe_selectors with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [MediaConditionAllType]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_media_condition_all_types with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [MediaConditionWithoutOrType]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_media_condition_without_or_types with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [SupportsConditionType]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_supports_condition_types with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [ComponentValue]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_component_values with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [Rule]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_rules with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [ComplexSelectorChildren]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_complex_selector_childrens with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [ForgivingComplexSelector]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_forgiving_complex_selectors with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [ForgivingRelativeSelector]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_forgiving_relative_selectors with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [PseudoClassSelectorChildren]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_pseudo_class_selector_childrens with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [PseudoElementSelectorChildren]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_pseudo_element_selector_childrens with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [SubclassSelector]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_subclass_selectors with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [CalcProductOrOperator]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_calc_product_or_operators with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [CalcValueOrOperator]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_calc_value_or_operators with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [FamilyName]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_family_names with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [UrlModifier]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_url_modifiers with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [LayerName]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_layer_names with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [MediaQuery]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_media_querys with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [PageSelector]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_page_selectors with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [PageSelectorPseudo]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_page_selector_pseudos with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [ComplexSelector]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_complex_selectors with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [CompoundSelector]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_compound_selectors with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [RelativeSelector]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_relative_selectors with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [CustomIdent]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_custom_idents with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Source§

impl<V: ?Sized + Visit> VisitWith<V> for [Ident]

Source§

fn visit_with(&self, visitor: &mut V)

Calls Visit::visit_idents with self. (Extra impl)

Source§

fn visit_children_with(&self, visitor: &mut V)

Implementors§