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)