Trait swc_css_visit::VisitWith

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

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

Required Methods§

source

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

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

source

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

Visit children nodes of self`` with visitor`.

Implementations on Foreign Types§

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_alpha_value with self.

source§

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

source§

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

source§

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

Calls Visit::visit_an_plus_b with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_angle with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_any_namespace with self.

source§

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

source§

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

source§

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

Calls Visit::visit_at_rule with self.

source§

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

source§

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

source§

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

Calls Visit::visit_at_rule_name with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_bin_op with self.

source§

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

source§

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

source§

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

Calls Visit::visit_calc_operator with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_calc_product with self.

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_calc_sum with self.

source§

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

source§

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

source§

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

Calls Visit::visit_calc_value with self.

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_class_selector with self.

source§

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

source§

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

source§

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

Calls Visit::visit_cmyk_component with self.

source§

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

source§

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

source§

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

Calls Visit::visit_color with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_combinator with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_container_name with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_custom_ident with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_dashed_ident with self.

source§

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

source§

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

source§

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

Calls Visit::visit_declaration with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_delimiter with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_dimension with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_extension_name with self.

source§

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

source§

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

source§

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

Calls Visit::visit_family_name with self.

source§

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

source§

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

source§

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

Calls Visit::visit_flex with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_frequency with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_function with self.

source§

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

source§

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

source§

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

Calls Visit::visit_function_name with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_hex_color with self.

source§

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

source§

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

source§

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

Calls Visit::visit_hue with self.

source§

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

source§

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

source§

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

Calls Visit::visit_id_selector with self.

source§

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

source§

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

source§

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

Calls Visit::visit_ident with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_import_href with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_import_prelude with self.

source§

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

source§

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

source§

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

Calls Visit::visit_important_flag with self.

source§

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

source§

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

source§

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

Calls Visit::visit_integer with self.

source§

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

source§

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

source§

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

Calls Visit::visit_keyframe_block with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_keyframes_name with self.

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_layer_name with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_layer_prelude with self.

source§

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

source§

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

source§

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

Calls Visit::visit_length with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_media_and with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_media_feature with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_media_not with self.

source§

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

source§

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

source§

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

Calls Visit::visit_media_or with self.

source§

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

source§

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

source§

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

Calls Visit::visit_media_query with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_media_type with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_namespace with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_number with self.

source§

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

source§

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

source§

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

Calls Visit::visit_number_type with self.

source§

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

source§

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

source§

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

Calls Visit::visit_page_selector with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_percentage with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_qualified_rule with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_ratio with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_resolution with self.

source§

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

source§

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

source§

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

Calls Visit::visit_rule with self.

source§

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

source§

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

source§

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

Calls Visit::visit_scope_range with self.

source§

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

source§

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

source§

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

Calls Visit::visit_selector_list with self.

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_simple_block with self.

source§

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

source§

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

source§

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

Calls Visit::visit_size_feature with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

Calls Visit::visit_str with self.

source§

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

source§

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

source§

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

Calls Visit::visit_style_block with self.

source§

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

source§

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

source§

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

Calls Visit::visit_stylesheet with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_supports_and with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_supports_not with self.

source§

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

source§

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

source§

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

Calls Visit::visit_supports_or with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_time with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_token with self.

source§

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

source§

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

source§

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

Calls Visit::visit_token_and_span with self.

source§

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

source§

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

source§

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

Calls Visit::visit_type_selector with self.

source§

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

source§

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

source§

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

Calls Visit::visit_unicode_range with self.

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

Calls Visit::visit_url with self.

source§

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

source§

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

source§

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

Calls Visit::visit_url_key_value with self.

source§

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

source§

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

source§

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

Calls Visit::visit_url_modifier with self.

source§

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

source§

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

source§

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

Calls Visit::visit_url_value with self.

source§

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

source§

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

source§

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

Calls Visit::visit_url_value_raw with self.

source§

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

source§

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

source§

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

Calls Visit::visit_wq_name with self.

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

source§

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

source§

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

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

source§

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

Implementors§