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§
sourcefn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls a visitor method (visitor.fold_xxx) with self.
sourcefn visit_children_with(&self, visitor: &mut V)
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>
impl<V, T> VisitWith<V> for Box<T>
fn visit_with(&self, visitor: &mut V)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V, T> VisitWith<V> for Vec<T>
impl<V, T> VisitWith<V> for Vec<T>
fn visit_with(&self, visitor: &mut V)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<AtRulePrelude>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<AtRulePrelude>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_at_rule_prelude
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<Function>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<Function>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_function
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<ImportConditions>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<ImportConditions>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_import_conditions
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<ImportLayerName>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<ImportLayerName>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_import_layer_name
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<MediaConditionType>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<MediaConditionType>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_media_condition_type
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<MediaQueryList>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<MediaQueryList>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_media_query_list
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<TypeSelector>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<TypeSelector>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_type_selector
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<UrlValue>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Box<UrlValue>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_url_value
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Vec<PageSelectorPseudo>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Vec<PageSelectorPseudo>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_page_selector_pseudos
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Vec<PseudoClassSelectorChildren>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Vec<PseudoClassSelectorChildren>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_pseudo_class_selector_childrens
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Vec<PseudoElementSelectorChildren>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Vec<PseudoElementSelectorChildren>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_pseudo_element_selector_childrens
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Vec<UrlModifier>>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Vec<UrlModifier>>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_url_modifiers
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Atom>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Atom>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_atom
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<AttributeSelectorMatcher>
impl<V: ?Sized + Visit> VisitWith<V> for Option<AttributeSelectorMatcher>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_attribute_selector_matcher
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<AttributeSelectorModifier>
impl<V: ?Sized + Visit> VisitWith<V> for Option<AttributeSelectorModifier>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_attribute_selector_modifier
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<AttributeSelectorValue>
impl<V: ?Sized + Visit> VisitWith<V> for Option<AttributeSelectorValue>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_attribute_selector_value
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Combinator>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Combinator>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_combinator
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<ContainerName>
impl<V: ?Sized + Visit> VisitWith<V> for Option<ContainerName>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_container_name
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<ForgivingSelectorList>
impl<V: ?Sized + Visit> VisitWith<V> for Option<ForgivingSelectorList>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_forgiving_selector_list
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Ident>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Ident>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_ident
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<ImportantFlag>
impl<V: ?Sized + Visit> VisitWith<V> for Option<ImportantFlag>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_important_flag
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<MediaType>
impl<V: ?Sized + Visit> VisitWith<V> for Option<MediaType>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_media_type
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Namespace>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Namespace>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_namespace
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<NamespacePrefix>
impl<V: ?Sized + Visit> VisitWith<V> for Option<NamespacePrefix>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_namespace_prefix
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<NestingSelector>
impl<V: ?Sized + Visit> VisitWith<V> for Option<NestingSelector>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_nesting_selector
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<Number>
impl<V: ?Sized + Visit> VisitWith<V> for Option<Number>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_number
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<PageSelectorType>
impl<V: ?Sized + Visit> VisitWith<V> for Option<PageSelectorType>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_page_selector_type
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Option<SimpleBlock>
impl<V: ?Sized + Visit> VisitWith<V> for Option<SimpleBlock>
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_opt_simple_block
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AbsoluteColorBase
impl<V: ?Sized + Visit> VisitWith<V> for AbsoluteColorBase
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_absolute_color_base
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AlphaValue
impl<V: ?Sized + Visit> VisitWith<V> for AlphaValue
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_alpha_value
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AnPlusB
impl<V: ?Sized + Visit> VisitWith<V> for AnPlusB
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_an_plus_b
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AnPlusBNotation
impl<V: ?Sized + Visit> VisitWith<V> for AnPlusBNotation
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_an_plus_b_notation
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Angle
impl<V: ?Sized + Visit> VisitWith<V> for Angle
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_angle
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AnglePercentage
impl<V: ?Sized + Visit> VisitWith<V> for AnglePercentage
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_angle_percentage
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AnyNamespace
impl<V: ?Sized + Visit> VisitWith<V> for AnyNamespace
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_any_namespace
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AtRule
impl<V: ?Sized + Visit> VisitWith<V> for AtRule
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_at_rule
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AtRuleName
impl<V: ?Sized + Visit> VisitWith<V> for AtRuleName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_at_rule_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AtRulePrelude
impl<V: ?Sized + Visit> VisitWith<V> for AtRulePrelude
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_at_rule_prelude
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Atom
impl<V: ?Sized + Visit> VisitWith<V> for Atom
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_atom
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AttributeSelector
impl<V: ?Sized + Visit> VisitWith<V> for AttributeSelector
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_attribute_selector
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AttributeSelectorMatcher
impl<V: ?Sized + Visit> VisitWith<V> for AttributeSelectorMatcher
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_attribute_selector_matcher
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AttributeSelectorMatcherValue
impl<V: ?Sized + Visit> VisitWith<V> for AttributeSelectorMatcherValue
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_attribute_selector_matcher_value
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AttributeSelectorModifier
impl<V: ?Sized + Visit> VisitWith<V> for AttributeSelectorModifier
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_attribute_selector_modifier
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for AttributeSelectorValue
impl<V: ?Sized + Visit> VisitWith<V> for AttributeSelectorValue
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_attribute_selector_value
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for BinOp
impl<V: ?Sized + Visit> VisitWith<V> for BinOp
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_bin_op
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CalcOperator
impl<V: ?Sized + Visit> VisitWith<V> for CalcOperator
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_calc_operator
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CalcOperatorType
impl<V: ?Sized + Visit> VisitWith<V> for CalcOperatorType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_calc_operator_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CalcProduct
impl<V: ?Sized + Visit> VisitWith<V> for CalcProduct
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_calc_product
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CalcProductOrOperator
impl<V: ?Sized + Visit> VisitWith<V> for CalcProductOrOperator
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_calc_product_or_operator
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CalcSum
impl<V: ?Sized + Visit> VisitWith<V> for CalcSum
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_calc_sum
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CalcValue
impl<V: ?Sized + Visit> VisitWith<V> for CalcValue
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_calc_value
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CalcValueOrOperator
impl<V: ?Sized + Visit> VisitWith<V> for CalcValueOrOperator
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_calc_value_or_operator
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ClassSelector
impl<V: ?Sized + Visit> VisitWith<V> for ClassSelector
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_class_selector
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CmykComponent
impl<V: ?Sized + Visit> VisitWith<V> for CmykComponent
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_cmyk_component
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Color
impl<V: ?Sized + Visit> VisitWith<V> for Color
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_color
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ColorProfileName
impl<V: ?Sized + Visit> VisitWith<V> for ColorProfileName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_color_profile_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Combinator
impl<V: ?Sized + Visit> VisitWith<V> for Combinator
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_combinator
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CombinatorValue
impl<V: ?Sized + Visit> VisitWith<V> for CombinatorValue
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_combinator_value
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ComplexSelector
impl<V: ?Sized + Visit> VisitWith<V> for ComplexSelector
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_complex_selector
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ComplexSelectorChildren
impl<V: ?Sized + Visit> VisitWith<V> for ComplexSelectorChildren
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_complex_selector_children
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ComponentValue
impl<V: ?Sized + Visit> VisitWith<V> for ComponentValue
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_component_value
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CompoundSelector
impl<V: ?Sized + Visit> VisitWith<V> for CompoundSelector
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_compound_selector
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CompoundSelectorList
impl<V: ?Sized + Visit> VisitWith<V> for CompoundSelectorList
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_compound_selector_list
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ContainerCondition
impl<V: ?Sized + Visit> VisitWith<V> for ContainerCondition
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_container_condition
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ContainerName
impl<V: ?Sized + Visit> VisitWith<V> for ContainerName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_container_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ContainerQuery
impl<V: ?Sized + Visit> VisitWith<V> for ContainerQuery
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_container_query
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ContainerQueryAnd
impl<V: ?Sized + Visit> VisitWith<V> for ContainerQueryAnd
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_container_query_and
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ContainerQueryNot
impl<V: ?Sized + Visit> VisitWith<V> for ContainerQueryNot
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_container_query_not
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ContainerQueryOr
impl<V: ?Sized + Visit> VisitWith<V> for ContainerQueryOr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_container_query_or
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ContainerQueryType
impl<V: ?Sized + Visit> VisitWith<V> for ContainerQueryType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_container_query_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CustomHighlightName
impl<V: ?Sized + Visit> VisitWith<V> for CustomHighlightName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_custom_highlight_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CustomIdent
impl<V: ?Sized + Visit> VisitWith<V> for CustomIdent
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_custom_ident
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CustomMediaQuery
impl<V: ?Sized + Visit> VisitWith<V> for CustomMediaQuery
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_custom_media_query
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CustomMediaQueryMediaType
impl<V: ?Sized + Visit> VisitWith<V> for CustomMediaQueryMediaType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_custom_media_query_media_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for CustomPropertyName
impl<V: ?Sized + Visit> VisitWith<V> for CustomPropertyName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_custom_property_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for DashedIdent
impl<V: ?Sized + Visit> VisitWith<V> for DashedIdent
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_dashed_ident
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Declaration
impl<V: ?Sized + Visit> VisitWith<V> for Declaration
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_declaration
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for DeclarationName
impl<V: ?Sized + Visit> VisitWith<V> for DeclarationName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_declaration_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for DeclarationOrAtRule
impl<V: ?Sized + Visit> VisitWith<V> for DeclarationOrAtRule
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_declaration_or_at_rule
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Delimiter
impl<V: ?Sized + Visit> VisitWith<V> for Delimiter
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_delimiter
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for DelimiterValue
impl<V: ?Sized + Visit> VisitWith<V> for DelimiterValue
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_delimiter_value
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Dimension
impl<V: ?Sized + Visit> VisitWith<V> for Dimension
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_dimension
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for DimensionToken
impl<V: ?Sized + Visit> VisitWith<V> for DimensionToken
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_dimension_token
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for DocumentPrelude
impl<V: ?Sized + Visit> VisitWith<V> for DocumentPrelude
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_document_prelude
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for DocumentPreludeMatchingFunction
impl<V: ?Sized + Visit> VisitWith<V> for DocumentPreludeMatchingFunction
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_document_prelude_matching_function
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ExtensionName
impl<V: ?Sized + Visit> VisitWith<V> for ExtensionName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_extension_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for FamilyName
impl<V: ?Sized + Visit> VisitWith<V> for FamilyName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_family_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Flex
impl<V: ?Sized + Visit> VisitWith<V> for Flex
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_flex
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for FontFeatureValuesPrelude
impl<V: ?Sized + Visit> VisitWith<V> for FontFeatureValuesPrelude
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_font_feature_values_prelude
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ForgivingComplexSelector
impl<V: ?Sized + Visit> VisitWith<V> for ForgivingComplexSelector
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_forgiving_complex_selector
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ForgivingRelativeSelector
impl<V: ?Sized + Visit> VisitWith<V> for ForgivingRelativeSelector
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_forgiving_relative_selector
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ForgivingRelativeSelectorList
impl<V: ?Sized + Visit> VisitWith<V> for ForgivingRelativeSelectorList
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_forgiving_relative_selector_list
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ForgivingSelectorList
impl<V: ?Sized + Visit> VisitWith<V> for ForgivingSelectorList
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_forgiving_selector_list
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Frequency
impl<V: ?Sized + Visit> VisitWith<V> for Frequency
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_frequency
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for FrequencyPercentage
impl<V: ?Sized + Visit> VisitWith<V> for FrequencyPercentage
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_frequency_percentage
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Function
impl<V: ?Sized + Visit> VisitWith<V> for Function
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_function
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for FunctionName
impl<V: ?Sized + Visit> VisitWith<V> for FunctionName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_function_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for GeneralEnclosed
impl<V: ?Sized + Visit> VisitWith<V> for GeneralEnclosed
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_general_enclosed
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for HexColor
impl<V: ?Sized + Visit> VisitWith<V> for HexColor
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_hex_color
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Hue
impl<V: ?Sized + Visit> VisitWith<V> for Hue
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_hue
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for IdSelector
impl<V: ?Sized + Visit> VisitWith<V> for IdSelector
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_id_selector
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Ident
impl<V: ?Sized + Visit> VisitWith<V> for Ident
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ident
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ImportConditions
impl<V: ?Sized + Visit> VisitWith<V> for ImportConditions
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_import_conditions
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ImportHref
impl<V: ?Sized + Visit> VisitWith<V> for ImportHref
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_import_href
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ImportLayerName
impl<V: ?Sized + Visit> VisitWith<V> for ImportLayerName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_import_layer_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ImportPrelude
impl<V: ?Sized + Visit> VisitWith<V> for ImportPrelude
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_import_prelude
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ImportantFlag
impl<V: ?Sized + Visit> VisitWith<V> for ImportantFlag
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_important_flag
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Integer
impl<V: ?Sized + Visit> VisitWith<V> for Integer
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_integer
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for KeyframeBlock
impl<V: ?Sized + Visit> VisitWith<V> for KeyframeBlock
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_keyframe_block
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for KeyframeSelector
impl<V: ?Sized + Visit> VisitWith<V> for KeyframeSelector
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_keyframe_selector
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for KeyframesName
impl<V: ?Sized + Visit> VisitWith<V> for KeyframesName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_keyframes_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for KeyframesPseudoFunction
impl<V: ?Sized + Visit> VisitWith<V> for KeyframesPseudoFunction
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_keyframes_pseudo_function
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for KeyframesPseudoPrefix
impl<V: ?Sized + Visit> VisitWith<V> for KeyframesPseudoPrefix
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_keyframes_pseudo_prefix
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for LayerName
impl<V: ?Sized + Visit> VisitWith<V> for LayerName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_layer_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for LayerNameList
impl<V: ?Sized + Visit> VisitWith<V> for LayerNameList
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_layer_name_list
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for LayerPrelude
impl<V: ?Sized + Visit> VisitWith<V> for LayerPrelude
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_layer_prelude
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Length
impl<V: ?Sized + Visit> VisitWith<V> for Length
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_length
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for LengthPercentage
impl<V: ?Sized + Visit> VisitWith<V> for LengthPercentage
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_length_percentage
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ListOfComponentValues
impl<V: ?Sized + Visit> VisitWith<V> for ListOfComponentValues
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_list_of_component_values
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaAnd
impl<V: ?Sized + Visit> VisitWith<V> for MediaAnd
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_and
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaCondition
impl<V: ?Sized + Visit> VisitWith<V> for MediaCondition
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_condition
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaConditionAllType
impl<V: ?Sized + Visit> VisitWith<V> for MediaConditionAllType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_condition_all_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaConditionType
impl<V: ?Sized + Visit> VisitWith<V> for MediaConditionType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_condition_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaConditionWithoutOr
impl<V: ?Sized + Visit> VisitWith<V> for MediaConditionWithoutOr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_condition_without_or
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaConditionWithoutOrType
impl<V: ?Sized + Visit> VisitWith<V> for MediaConditionWithoutOrType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_condition_without_or_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaFeature
impl<V: ?Sized + Visit> VisitWith<V> for MediaFeature
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_feature
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureBoolean
impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureBoolean
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_feature_boolean
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureName
impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_feature_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaFeaturePlain
impl<V: ?Sized + Visit> VisitWith<V> for MediaFeaturePlain
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_feature_plain
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureRange
impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureRange
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_feature_range
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureRangeComparison
impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureRangeComparison
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_feature_range_comparison
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureRangeInterval
impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureRangeInterval
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_feature_range_interval
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureValue
impl<V: ?Sized + Visit> VisitWith<V> for MediaFeatureValue
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_feature_value
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaInParens
impl<V: ?Sized + Visit> VisitWith<V> for MediaInParens
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_in_parens
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaNot
impl<V: ?Sized + Visit> VisitWith<V> for MediaNot
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_not
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaOr
impl<V: ?Sized + Visit> VisitWith<V> for MediaOr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_or
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaQuery
impl<V: ?Sized + Visit> VisitWith<V> for MediaQuery
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_query
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaQueryList
impl<V: ?Sized + Visit> VisitWith<V> for MediaQueryList
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_query_list
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for MediaType
impl<V: ?Sized + Visit> VisitWith<V> for MediaType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for NamedNamespace
impl<V: ?Sized + Visit> VisitWith<V> for NamedNamespace
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_named_namespace
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Namespace
impl<V: ?Sized + Visit> VisitWith<V> for Namespace
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_namespace
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for NamespacePrefix
impl<V: ?Sized + Visit> VisitWith<V> for NamespacePrefix
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_namespace_prefix
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for NamespacePrelude
impl<V: ?Sized + Visit> VisitWith<V> for NamespacePrelude
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_namespace_prelude
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for NamespacePreludeUri
impl<V: ?Sized + Visit> VisitWith<V> for NamespacePreludeUri
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_namespace_prelude_uri
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for NestingSelector
impl<V: ?Sized + Visit> VisitWith<V> for NestingSelector
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_nesting_selector
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Number
impl<V: ?Sized + Visit> VisitWith<V> for Number
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_number
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for NumberType
impl<V: ?Sized + Visit> VisitWith<V> for NumberType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_number_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for PageSelector
impl<V: ?Sized + Visit> VisitWith<V> for PageSelector
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_page_selector
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for PageSelectorList
impl<V: ?Sized + Visit> VisitWith<V> for PageSelectorList
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_page_selector_list
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for PageSelectorPseudo
impl<V: ?Sized + Visit> VisitWith<V> for PageSelectorPseudo
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_page_selector_pseudo
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for PageSelectorType
impl<V: ?Sized + Visit> VisitWith<V> for PageSelectorType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_page_selector_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Percentage
impl<V: ?Sized + Visit> VisitWith<V> for Percentage
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_percentage
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for PseudoClassSelector
impl<V: ?Sized + Visit> VisitWith<V> for PseudoClassSelector
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_pseudo_class_selector
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for PseudoClassSelectorChildren
impl<V: ?Sized + Visit> VisitWith<V> for PseudoClassSelectorChildren
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_pseudo_class_selector_children
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for PseudoElementSelector
impl<V: ?Sized + Visit> VisitWith<V> for PseudoElementSelector
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_pseudo_element_selector
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for PseudoElementSelectorChildren
impl<V: ?Sized + Visit> VisitWith<V> for PseudoElementSelectorChildren
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_pseudo_element_selector_children
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for QualifiedRule
impl<V: ?Sized + Visit> VisitWith<V> for QualifiedRule
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_qualified_rule
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for QualifiedRulePrelude
impl<V: ?Sized + Visit> VisitWith<V> for QualifiedRulePrelude
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_qualified_rule_prelude
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for QueryInParens
impl<V: ?Sized + Visit> VisitWith<V> for QueryInParens
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_query_in_parens
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Ratio
impl<V: ?Sized + Visit> VisitWith<V> for Ratio
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_ratio
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for RelativeSelector
impl<V: ?Sized + Visit> VisitWith<V> for RelativeSelector
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_relative_selector
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for RelativeSelectorList
impl<V: ?Sized + Visit> VisitWith<V> for RelativeSelectorList
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_relative_selector_list
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Resolution
impl<V: ?Sized + Visit> VisitWith<V> for Resolution
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_resolution
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Rule
impl<V: ?Sized + Visit> VisitWith<V> for Rule
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_rule
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for ScopeRange
impl<V: ?Sized + Visit> VisitWith<V> for ScopeRange
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_scope_range
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SelectorList
impl<V: ?Sized + Visit> VisitWith<V> for SelectorList
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_selector_list
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SequenceOfCustomIdents
impl<V: ?Sized + Visit> VisitWith<V> for SequenceOfCustomIdents
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_sequence_of_custom_idents
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SimpleBlock
impl<V: ?Sized + Visit> VisitWith<V> for SimpleBlock
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_simple_block
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SizeFeature
impl<V: ?Sized + Visit> VisitWith<V> for SizeFeature
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_size_feature
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureBoolean
impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureBoolean
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_size_feature_boolean
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureName
impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_size_feature_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SizeFeaturePlain
impl<V: ?Sized + Visit> VisitWith<V> for SizeFeaturePlain
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_size_feature_plain
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureRange
impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureRange
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_size_feature_range
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureRangeComparison
impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureRangeComparison
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_size_feature_range_comparison
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureRangeInterval
impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureRangeInterval
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_size_feature_range_interval
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureValue
impl<V: ?Sized + Visit> VisitWith<V> for SizeFeatureValue
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_size_feature_value
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Span
impl<V: ?Sized + Visit> VisitWith<V> for Span
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_span
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Str
impl<V: ?Sized + Visit> VisitWith<V> for Str
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_str
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for StyleBlock
impl<V: ?Sized + Visit> VisitWith<V> for StyleBlock
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_style_block
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Stylesheet
impl<V: ?Sized + Visit> VisitWith<V> for Stylesheet
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_stylesheet
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SubclassSelector
impl<V: ?Sized + Visit> VisitWith<V> for SubclassSelector
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_subclass_selector
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SupportsAnd
impl<V: ?Sized + Visit> VisitWith<V> for SupportsAnd
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_supports_and
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SupportsCondition
impl<V: ?Sized + Visit> VisitWith<V> for SupportsCondition
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_supports_condition
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SupportsConditionType
impl<V: ?Sized + Visit> VisitWith<V> for SupportsConditionType
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_supports_condition_type
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SupportsFeature
impl<V: ?Sized + Visit> VisitWith<V> for SupportsFeature
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_supports_feature
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SupportsInParens
impl<V: ?Sized + Visit> VisitWith<V> for SupportsInParens
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_supports_in_parens
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SupportsNot
impl<V: ?Sized + Visit> VisitWith<V> for SupportsNot
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_supports_not
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for SupportsOr
impl<V: ?Sized + Visit> VisitWith<V> for SupportsOr
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_supports_or
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TagNameSelector
impl<V: ?Sized + Visit> VisitWith<V> for TagNameSelector
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_tag_name_selector
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Time
impl<V: ?Sized + Visit> VisitWith<V> for Time
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_time
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TimePercentage
impl<V: ?Sized + Visit> VisitWith<V> for TimePercentage
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_time_percentage
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Token
impl<V: ?Sized + Visit> VisitWith<V> for Token
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_token
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TokenAndSpan
impl<V: ?Sized + Visit> VisitWith<V> for TokenAndSpan
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_token_and_span
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for TypeSelector
impl<V: ?Sized + Visit> VisitWith<V> for TypeSelector
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_type_selector
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for UnicodeRange
impl<V: ?Sized + Visit> VisitWith<V> for UnicodeRange
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_unicode_range
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for UniversalSelector
impl<V: ?Sized + Visit> VisitWith<V> for UniversalSelector
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_universal_selector
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for UnknownDimension
impl<V: ?Sized + Visit> VisitWith<V> for UnknownDimension
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_unknown_dimension
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for Url
impl<V: ?Sized + Visit> VisitWith<V> for Url
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_url
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for UrlKeyValue
impl<V: ?Sized + Visit> VisitWith<V> for UrlKeyValue
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_url_key_value
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for UrlModifier
impl<V: ?Sized + Visit> VisitWith<V> for UrlModifier
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_url_modifier
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for UrlValue
impl<V: ?Sized + Visit> VisitWith<V> for UrlValue
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_url_value
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for UrlValueRaw
impl<V: ?Sized + Visit> VisitWith<V> for UrlValueRaw
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_url_value_raw
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for WqName
impl<V: ?Sized + Visit> VisitWith<V> for WqName
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_wq_name
with self
.
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [CalcProductOrOperator]
impl<V: ?Sized + Visit> VisitWith<V> for [CalcProductOrOperator]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_calc_product_or_operators
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [CalcValueOrOperator]
impl<V: ?Sized + Visit> VisitWith<V> for [CalcValueOrOperator]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_calc_value_or_operators
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [ComplexSelectorChildren]
impl<V: ?Sized + Visit> VisitWith<V> for [ComplexSelectorChildren]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_complex_selector_childrens
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [ComplexSelector]
impl<V: ?Sized + Visit> VisitWith<V> for [ComplexSelector]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_complex_selectors
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [ComponentValue]
impl<V: ?Sized + Visit> VisitWith<V> for [ComponentValue]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_component_values
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [CompoundSelector]
impl<V: ?Sized + Visit> VisitWith<V> for [CompoundSelector]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_compound_selectors
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [ContainerQueryType]
impl<V: ?Sized + Visit> VisitWith<V> for [ContainerQueryType]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_container_query_types
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [CustomIdent]
impl<V: ?Sized + Visit> VisitWith<V> for [CustomIdent]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_custom_idents
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [DocumentPreludeMatchingFunction]
impl<V: ?Sized + Visit> VisitWith<V> for [DocumentPreludeMatchingFunction]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_document_prelude_matching_functions
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [FamilyName]
impl<V: ?Sized + Visit> VisitWith<V> for [FamilyName]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_family_names
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [ForgivingComplexSelector]
impl<V: ?Sized + Visit> VisitWith<V> for [ForgivingComplexSelector]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_forgiving_complex_selectors
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [ForgivingRelativeSelector]
impl<V: ?Sized + Visit> VisitWith<V> for [ForgivingRelativeSelector]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_forgiving_relative_selectors
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [Ident]
impl<V: ?Sized + Visit> VisitWith<V> for [Ident]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_idents
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [KeyframeSelector]
impl<V: ?Sized + Visit> VisitWith<V> for [KeyframeSelector]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_keyframe_selectors
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [LayerName]
impl<V: ?Sized + Visit> VisitWith<V> for [LayerName]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_layer_names
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [MediaConditionAllType]
impl<V: ?Sized + Visit> VisitWith<V> for [MediaConditionAllType]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_condition_all_types
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [MediaConditionWithoutOrType]
impl<V: ?Sized + Visit> VisitWith<V> for [MediaConditionWithoutOrType]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_condition_without_or_types
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [MediaQuery]
impl<V: ?Sized + Visit> VisitWith<V> for [MediaQuery]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_media_querys
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [PageSelectorPseudo]
impl<V: ?Sized + Visit> VisitWith<V> for [PageSelectorPseudo]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_page_selector_pseudos
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [PageSelector]
impl<V: ?Sized + Visit> VisitWith<V> for [PageSelector]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_page_selectors
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [PseudoClassSelectorChildren]
impl<V: ?Sized + Visit> VisitWith<V> for [PseudoClassSelectorChildren]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_pseudo_class_selector_childrens
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [PseudoElementSelectorChildren]
impl<V: ?Sized + Visit> VisitWith<V> for [PseudoElementSelectorChildren]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_pseudo_element_selector_childrens
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [RelativeSelector]
impl<V: ?Sized + Visit> VisitWith<V> for [RelativeSelector]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_relative_selectors
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [Rule]
impl<V: ?Sized + Visit> VisitWith<V> for [Rule]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_rules
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [SubclassSelector]
impl<V: ?Sized + Visit> VisitWith<V> for [SubclassSelector]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_subclass_selectors
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [SupportsConditionType]
impl<V: ?Sized + Visit> VisitWith<V> for [SupportsConditionType]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_supports_condition_types
with self
. (Extra impl)
fn visit_children_with(&self, visitor: &mut V)
source§impl<V: ?Sized + Visit> VisitWith<V> for [UrlModifier]
impl<V: ?Sized + Visit> VisitWith<V> for [UrlModifier]
source§fn visit_with(&self, visitor: &mut V)
fn visit_with(&self, visitor: &mut V)
Calls Visit::visit_url_modifiers
with self
. (Extra impl)