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