Struct swc_core::ecma::utils::swc_common::pass::All

pub struct All<V> {
    pub visitor: V,
}
Available on crate features __ecma and __utils only.
Expand description

Visit all children nodes. This converts VisitAll to Visit. The type parameter V should implement VisitAll and All<V> implements Visit.

Fields§

§visitor: V

Trait Implementations§

§

impl<V> Clone for All<V>
where V: Clone,

§

fn clone(&self) -> All<V>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl<V> Debug for All<V>
where V: Debug,

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl<V> PartialEq for All<V>
where V: PartialEq,

§

fn eq(&self, other: &All<V>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl<V> Visit for All<V>
where V: VisitAll,

§

fn visit_accessibility(&mut self, n: &Accessibility)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_array_lit(&mut self, n: &ArrayLit)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_array_pat(&mut self, n: &ArrayPat)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_arrow_expr(&mut self, n: &ArrowExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_assign_expr(&mut self, n: &AssignExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_assign_op(&mut self, n: &AssignOp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_assign_pat(&mut self, n: &AssignPat)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_assign_pat_prop(&mut self, n: &AssignPatProp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_assign_prop(&mut self, n: &AssignProp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_assign_target(&mut self, n: &AssignTarget)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_assign_target_pat(&mut self, n: &AssignTargetPat)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_atom(&mut self, n: &Atom)

§

fn visit_auto_accessor(&mut self, n: &AutoAccessor)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_await_expr(&mut self, n: &AwaitExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_big_int(&mut self, n: &BigInt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_big_int_value(&mut self, n: &BigInt)

§

fn visit_bin_expr(&mut self, n: &BinExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_binary_op(&mut self, n: &BinaryOp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_binding_ident(&mut self, n: &BindingIdent)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_block_stmt(&mut self, n: &BlockStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_block_stmt_or_expr(&mut self, n: &BlockStmtOrExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_bool(&mut self, n: &Bool)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_break_stmt(&mut self, n: &BreakStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_call_expr(&mut self, n: &CallExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_callee(&mut self, n: &Callee)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_catch_clause(&mut self, n: &CatchClause)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_class(&mut self, n: &Class)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_class_decl(&mut self, n: &ClassDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_class_expr(&mut self, n: &ClassExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_class_member(&mut self, n: &ClassMember)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_class_members(&mut self, n: &[ClassMember])

§

fn visit_class_method(&mut self, n: &ClassMethod)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_class_prop(&mut self, n: &ClassProp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_computed_prop_name(&mut self, n: &ComputedPropName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_cond_expr(&mut self, n: &CondExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_constructor(&mut self, n: &Constructor)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_continue_stmt(&mut self, n: &ContinueStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_debugger_stmt(&mut self, n: &DebuggerStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_decl(&mut self, n: &Decl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_decorator(&mut self, n: &Decorator)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_decorators(&mut self, n: &[Decorator])

§

fn visit_default_decl(&mut self, n: &DefaultDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_do_while_stmt(&mut self, n: &DoWhileStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_empty_stmt(&mut self, n: &EmptyStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_export_all(&mut self, n: &ExportAll)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_export_decl(&mut self, n: &ExportDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_export_default_decl(&mut self, n: &ExportDefaultDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_export_default_expr(&mut self, n: &ExportDefaultExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_export_default_specifier(&mut self, n: &ExportDefaultSpecifier)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_export_named_specifier(&mut self, n: &ExportNamedSpecifier)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_export_namespace_specifier(&mut self, n: &ExportNamespaceSpecifier)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_export_specifier(&mut self, n: &ExportSpecifier)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_export_specifiers(&mut self, n: &[ExportSpecifier])

§

fn visit_expr(&mut self, n: &Expr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_expr_or_spread(&mut self, n: &ExprOrSpread)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_expr_or_spreads(&mut self, n: &[ExprOrSpread])

§

fn visit_expr_stmt(&mut self, n: &ExprStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_exprs(&mut self, n: &[Box<Expr>])

§

fn visit_fn_decl(&mut self, n: &FnDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_fn_expr(&mut self, n: &FnExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_for_head(&mut self, n: &ForHead)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_for_in_stmt(&mut self, n: &ForInStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_for_of_stmt(&mut self, n: &ForOfStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_for_stmt(&mut self, n: &ForStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_function(&mut self, n: &Function)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_getter_prop(&mut self, n: &GetterProp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ident(&mut self, n: &Ident)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_if_stmt(&mut self, n: &IfStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_import(&mut self, n: &Import)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_import_decl(&mut self, n: &ImportDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_import_default_specifier(&mut self, n: &ImportDefaultSpecifier)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_import_named_specifier(&mut self, n: &ImportNamedSpecifier)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_import_phase(&mut self, n: &ImportPhase)

§

fn visit_import_specifier(&mut self, n: &ImportSpecifier)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_import_specifiers(&mut self, n: &[ImportSpecifier])

§

fn visit_import_star_as_specifier(&mut self, n: &ImportStarAsSpecifier)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_invalid(&mut self, n: &Invalid)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_attr(&mut self, n: &JSXAttr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_attr_name(&mut self, n: &JSXAttrName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_attr_or_spread(&mut self, n: &JSXAttrOrSpread)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_attr_or_spreads(&mut self, n: &[JSXAttrOrSpread])

§

fn visit_jsx_attr_value(&mut self, n: &JSXAttrValue)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_closing_element(&mut self, n: &JSXClosingElement)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_closing_fragment(&mut self, n: &JSXClosingFragment)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_element(&mut self, n: &JSXElement)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_element_child(&mut self, n: &JSXElementChild)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_element_children(&mut self, n: &[JSXElementChild])

§

fn visit_jsx_element_name(&mut self, n: &JSXElementName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_empty_expr(&mut self, n: &JSXEmptyExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_expr(&mut self, n: &JSXExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_expr_container(&mut self, n: &JSXExprContainer)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_fragment(&mut self, n: &JSXFragment)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_member_expr(&mut self, n: &JSXMemberExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_namespaced_name(&mut self, n: &JSXNamespacedName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_object(&mut self, n: &JSXObject)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_opening_element(&mut self, n: &JSXOpeningElement)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_opening_fragment(&mut self, n: &JSXOpeningFragment)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_spread_child(&mut self, n: &JSXSpreadChild)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_jsx_text(&mut self, n: &JSXText)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_key(&mut self, n: &Key)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_key_value_pat_prop(&mut self, n: &KeyValuePatProp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_key_value_prop(&mut self, n: &KeyValueProp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_labeled_stmt(&mut self, n: &LabeledStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_lit(&mut self, n: &Lit)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_member_expr(&mut self, n: &MemberExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_member_prop(&mut self, n: &MemberProp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_meta_prop_expr(&mut self, n: &MetaPropExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_meta_prop_kind(&mut self, n: &MetaPropKind)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_method_kind(&mut self, n: &MethodKind)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_method_prop(&mut self, n: &MethodProp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_module(&mut self, n: &Module)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_module_decl(&mut self, n: &ModuleDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_module_export_name(&mut self, n: &ModuleExportName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_module_item(&mut self, n: &ModuleItem)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_module_items(&mut self, n: &[ModuleItem])

§

fn visit_named_export(&mut self, n: &NamedExport)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_new_expr(&mut self, n: &NewExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_null(&mut self, n: &Null)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_number(&mut self, n: &Number)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_object_lit(&mut self, n: &ObjectLit)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_object_pat(&mut self, n: &ObjectPat)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_object_pat_prop(&mut self, n: &ObjectPatProp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_object_pat_props(&mut self, n: &[ObjectPatProp])

§

fn visit_opt_accessibility(&mut self, n: Option<&Accessibility>)

§

fn visit_opt_atom(&mut self, n: Option<&Atom>)

§

fn visit_opt_block_stmt(&mut self, n: Option<&BlockStmt>)

§

fn visit_opt_call(&mut self, n: &OptCall)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_opt_catch_clause(&mut self, n: Option<&CatchClause>)

§

fn visit_opt_chain_base(&mut self, n: &OptChainBase)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_opt_chain_expr(&mut self, n: &OptChainExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_opt_expr(&mut self, n: Option<&Box<Expr>>)

§

fn visit_opt_expr_or_spread(&mut self, n: Option<&ExprOrSpread>)

§

fn visit_opt_expr_or_spreads(&mut self, n: Option<&[ExprOrSpread]>)

§

fn visit_opt_ident(&mut self, n: Option<&Ident>)

§

fn visit_opt_jsx_attr_value(&mut self, n: Option<&JSXAttrValue>)

§

fn visit_opt_jsx_closing_element(&mut self, n: Option<&JSXClosingElement>)

§

fn visit_opt_module_export_name(&mut self, n: Option<&ModuleExportName>)

§

fn visit_opt_module_items(&mut self, n: Option<&[ModuleItem]>)

§

fn visit_opt_object_lit(&mut self, n: Option<&Box<ObjectLit>>)

§

fn visit_opt_pat(&mut self, n: Option<&Pat>)

§

fn visit_opt_span(&mut self, n: Option<&Span>)

§

fn visit_opt_stmt(&mut self, n: Option<&Box<Stmt>>)

§

fn visit_opt_str(&mut self, n: Option<&Box<Str>>)

§

fn visit_opt_true_plus_minus(&mut self, n: Option<&TruePlusMinus>)

§

fn visit_opt_ts_entity_name(&mut self, n: Option<&TsEntityName>)

§

fn visit_opt_ts_namespace_body(&mut self, n: Option<&TsNamespaceBody>)

§

fn visit_opt_ts_type(&mut self, n: Option<&Box<TsType>>)

§

fn visit_opt_ts_type_ann(&mut self, n: Option<&Box<TsTypeAnn>>)

§

fn visit_opt_ts_type_param_decl(&mut self, n: Option<&Box<TsTypeParamDecl>>)

§

fn visit_opt_ts_type_param_instantiation( &mut self, n: Option<&Box<TsTypeParamInstantiation>> )

§

fn visit_opt_var_decl_or_expr(&mut self, n: Option<&VarDeclOrExpr>)

§

fn visit_opt_vec_expr_or_spreads(&mut self, n: &[Option<ExprOrSpread>])

§

fn visit_opt_vec_pats(&mut self, n: &[Option<Pat>])

§

fn visit_param(&mut self, n: &Param)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_param_or_ts_param_prop(&mut self, n: &ParamOrTsParamProp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_param_or_ts_param_props(&mut self, n: &[ParamOrTsParamProp])

§

fn visit_params(&mut self, n: &[Param])

§

fn visit_paren_expr(&mut self, n: &ParenExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_pat(&mut self, n: &Pat)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_pats(&mut self, n: &[Pat])

§

fn visit_private_method(&mut self, n: &PrivateMethod)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_private_name(&mut self, n: &PrivateName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_private_prop(&mut self, n: &PrivateProp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_program(&mut self, n: &Program)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_prop(&mut self, n: &Prop)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_prop_name(&mut self, n: &PropName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_prop_or_spread(&mut self, n: &PropOrSpread)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_prop_or_spreads(&mut self, n: &[PropOrSpread])

§

fn visit_regex(&mut self, n: &Regex)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_reserved_unused(&mut self, n: &ReservedUnused)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_rest_pat(&mut self, n: &RestPat)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_return_stmt(&mut self, n: &ReturnStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_script(&mut self, n: &Script)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_seq_expr(&mut self, n: &SeqExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_setter_prop(&mut self, n: &SetterProp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_simple_assign_target(&mut self, n: &SimpleAssignTarget)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_span(&mut self, n: &Span)

§

fn visit_spread_element(&mut self, n: &SpreadElement)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_static_block(&mut self, n: &StaticBlock)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_stmt(&mut self, n: &Stmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_stmts(&mut self, n: &[Stmt])

§

fn visit_str(&mut self, n: &Str)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_super(&mut self, n: &Super)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_super_prop(&mut self, n: &SuperProp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_super_prop_expr(&mut self, n: &SuperPropExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_switch_case(&mut self, n: &SwitchCase)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_switch_cases(&mut self, n: &[SwitchCase])

§

fn visit_switch_stmt(&mut self, n: &SwitchStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_tagged_tpl(&mut self, n: &TaggedTpl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_this_expr(&mut self, n: &ThisExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_throw_stmt(&mut self, n: &ThrowStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_tpl(&mut self, n: &Tpl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_tpl_element(&mut self, n: &TplElement)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_tpl_elements(&mut self, n: &[TplElement])

§

fn visit_true_plus_minus(&mut self, n: &TruePlusMinus)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_try_stmt(&mut self, n: &TryStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_array_type(&mut self, n: &TsArrayType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_as_expr(&mut self, n: &TsAsExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_call_signature_decl(&mut self, n: &TsCallSignatureDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_conditional_type(&mut self, n: &TsConditionalType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_const_assertion(&mut self, n: &TsConstAssertion)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_construct_signature_decl(&mut self, n: &TsConstructSignatureDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_constructor_type(&mut self, n: &TsConstructorType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_entity_name(&mut self, n: &TsEntityName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_enum_decl(&mut self, n: &TsEnumDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_enum_member(&mut self, n: &TsEnumMember)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_enum_member_id(&mut self, n: &TsEnumMemberId)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_enum_members(&mut self, n: &[TsEnumMember])

§

fn visit_ts_export_assignment(&mut self, n: &TsExportAssignment)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_expr_with_type_args(&mut self, n: &TsExprWithTypeArgs)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_expr_with_type_args_vec(&mut self, n: &[TsExprWithTypeArgs])

§

fn visit_ts_external_module_ref(&mut self, n: &TsExternalModuleRef)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_fn_or_constructor_type(&mut self, n: &TsFnOrConstructorType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_fn_param(&mut self, n: &TsFnParam)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_fn_params(&mut self, n: &[TsFnParam])

§

fn visit_ts_fn_type(&mut self, n: &TsFnType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_getter_signature(&mut self, n: &TsGetterSignature)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_import_equals_decl(&mut self, n: &TsImportEqualsDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_import_type(&mut self, n: &TsImportType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_index_signature(&mut self, n: &TsIndexSignature)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_indexed_access_type(&mut self, n: &TsIndexedAccessType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_infer_type(&mut self, n: &TsInferType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_instantiation(&mut self, n: &TsInstantiation)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_interface_body(&mut self, n: &TsInterfaceBody)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_interface_decl(&mut self, n: &TsInterfaceDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_intersection_type(&mut self, n: &TsIntersectionType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_keyword_type(&mut self, n: &TsKeywordType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_keyword_type_kind(&mut self, n: &TsKeywordTypeKind)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_lit(&mut self, n: &TsLit)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_lit_type(&mut self, n: &TsLitType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_mapped_type(&mut self, n: &TsMappedType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_method_signature(&mut self, n: &TsMethodSignature)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_module_block(&mut self, n: &TsModuleBlock)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_module_decl(&mut self, n: &TsModuleDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_module_name(&mut self, n: &TsModuleName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_module_ref(&mut self, n: &TsModuleRef)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_namespace_body(&mut self, n: &TsNamespaceBody)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_namespace_decl(&mut self, n: &TsNamespaceDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_namespace_export_decl(&mut self, n: &TsNamespaceExportDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_non_null_expr(&mut self, n: &TsNonNullExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_optional_type(&mut self, n: &TsOptionalType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_param_prop(&mut self, n: &TsParamProp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_param_prop_param(&mut self, n: &TsParamPropParam)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_parenthesized_type(&mut self, n: &TsParenthesizedType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_property_signature(&mut self, n: &TsPropertySignature)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_qualified_name(&mut self, n: &TsQualifiedName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_rest_type(&mut self, n: &TsRestType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_satisfies_expr(&mut self, n: &TsSatisfiesExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_setter_signature(&mut self, n: &TsSetterSignature)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_this_type(&mut self, n: &TsThisType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_this_type_or_ident(&mut self, n: &TsThisTypeOrIdent)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_tpl_lit_type(&mut self, n: &TsTplLitType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_tuple_element(&mut self, n: &TsTupleElement)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_tuple_elements(&mut self, n: &[TsTupleElement])

§

fn visit_ts_tuple_type(&mut self, n: &TsTupleType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_type(&mut self, n: &TsType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_type_alias_decl(&mut self, n: &TsTypeAliasDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_type_ann(&mut self, n: &TsTypeAnn)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_type_assertion(&mut self, n: &TsTypeAssertion)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_type_element(&mut self, n: &TsTypeElement)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_type_elements(&mut self, n: &[TsTypeElement])

§

fn visit_ts_type_lit(&mut self, n: &TsTypeLit)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_type_operator(&mut self, n: &TsTypeOperator)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_type_operator_op(&mut self, n: &TsTypeOperatorOp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_type_param(&mut self, n: &TsTypeParam)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_type_param_decl(&mut self, n: &TsTypeParamDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_type_param_instantiation(&mut self, n: &TsTypeParamInstantiation)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_type_params(&mut self, n: &[TsTypeParam])

§

fn visit_ts_type_predicate(&mut self, n: &TsTypePredicate)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_type_query(&mut self, n: &TsTypeQuery)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_type_query_expr(&mut self, n: &TsTypeQueryExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_type_ref(&mut self, n: &TsTypeRef)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_types(&mut self, n: &[Box<TsType>])

§

fn visit_ts_union_or_intersection_type(&mut self, n: &TsUnionOrIntersectionType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ts_union_type(&mut self, n: &TsUnionType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_unary_expr(&mut self, n: &UnaryExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_unary_op(&mut self, n: &UnaryOp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_update_expr(&mut self, n: &UpdateExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_update_op(&mut self, n: &UpdateOp)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_using_decl(&mut self, n: &UsingDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_var_decl(&mut self, n: &VarDecl)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_var_decl_kind(&mut self, n: &VarDeclKind)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_var_decl_or_expr(&mut self, n: &VarDeclOrExpr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_var_declarator(&mut self, n: &VarDeclarator)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_var_declarators(&mut self, n: &[VarDeclarator])

§

fn visit_while_stmt(&mut self, n: &WhileStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_with_stmt(&mut self, n: &WithStmt)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_yield_expr(&mut self, n: &YieldExpr)

This method can be overridden to customize the visitor behavior. Read more
§

impl<V> Visit for All<V>
where V: VisitAll,

§

fn visit_absolute_color_base(&mut self, n: &AbsoluteColorBase)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_alpha_value(&mut self, n: &AlphaValue)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_an_plus_b(&mut self, n: &AnPlusB)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_an_plus_b_notation(&mut self, n: &AnPlusBNotation)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_angle(&mut self, n: &Angle)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_angle_percentage(&mut self, n: &AnglePercentage)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_any_namespace(&mut self, n: &AnyNamespace)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_at_rule(&mut self, n: &AtRule)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_at_rule_name(&mut self, n: &AtRuleName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_at_rule_prelude(&mut self, n: &AtRulePrelude)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_atom(&mut self, n: &Atom)

§

fn visit_attribute_selector(&mut self, n: &AttributeSelector)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_attribute_selector_matcher(&mut self, n: &AttributeSelectorMatcher)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_attribute_selector_matcher_value( &mut self, n: &AttributeSelectorMatcherValue )

§

fn visit_attribute_selector_modifier(&mut self, n: &AttributeSelectorModifier)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_attribute_selector_value(&mut self, n: &AttributeSelectorValue)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_calc_operator(&mut self, n: &CalcOperator)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_calc_operator_type(&mut self, n: &CalcOperatorType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_calc_product(&mut self, n: &CalcProduct)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_calc_product_or_operator(&mut self, n: &CalcProductOrOperator)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_calc_product_or_operators(&mut self, n: &[CalcProductOrOperator])

§

fn visit_calc_sum(&mut self, n: &CalcSum)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_calc_value(&mut self, n: &CalcValue)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_calc_value_or_operator(&mut self, n: &CalcValueOrOperator)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_calc_value_or_operators(&mut self, n: &[CalcValueOrOperator])

§

fn visit_class_selector(&mut self, n: &ClassSelector)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_cmyk_component(&mut self, n: &CmykComponent)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_color(&mut self, n: &Color)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_color_profile_name(&mut self, n: &ColorProfileName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_combinator(&mut self, n: &Combinator)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_combinator_value(&mut self, n: &CombinatorValue)

§

fn visit_complex_selector(&mut self, n: &ComplexSelector)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_complex_selector_children(&mut self, n: &ComplexSelectorChildren)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_complex_selector_children_vec(&mut self, n: &[ComplexSelectorChildren])

§

fn visit_complex_selectors(&mut self, n: &[ComplexSelector])

§

fn visit_component_value(&mut self, n: &ComponentValue)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_component_values(&mut self, n: &[ComponentValue])

§

fn visit_compound_selector(&mut self, n: &CompoundSelector)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_compound_selector_list(&mut self, n: &CompoundSelectorList)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_compound_selectors(&mut self, n: &[CompoundSelector])

§

fn visit_container_condition(&mut self, n: &ContainerCondition)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_container_name(&mut self, n: &ContainerName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_container_query(&mut self, n: &ContainerQuery)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_container_query_and(&mut self, n: &ContainerQueryAnd)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_container_query_not(&mut self, n: &ContainerQueryNot)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_container_query_or(&mut self, n: &ContainerQueryOr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_container_query_type(&mut self, n: &ContainerQueryType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_container_query_types(&mut self, n: &[ContainerQueryType])

§

fn visit_custom_highlight_name(&mut self, n: &CustomHighlightName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_custom_ident(&mut self, n: &CustomIdent)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_custom_idents(&mut self, n: &[CustomIdent])

§

fn visit_custom_media_query(&mut self, n: &CustomMediaQuery)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_custom_media_query_media_type(&mut self, n: &CustomMediaQueryMediaType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_custom_property_name(&mut self, n: &CustomPropertyName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_dashed_ident(&mut self, n: &DashedIdent)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_declaration(&mut self, n: &Declaration)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_declaration_name(&mut self, n: &DeclarationName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_declaration_or_at_rule(&mut self, n: &DeclarationOrAtRule)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_delimiter(&mut self, n: &Delimiter)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_delimiter_value(&mut self, n: &DelimiterValue)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_dimension(&mut self, n: &Dimension)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_document_prelude(&mut self, n: &DocumentPrelude)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_document_prelude_matching_function( &mut self, n: &DocumentPreludeMatchingFunction )

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_document_prelude_matching_functions( &mut self, n: &[DocumentPreludeMatchingFunction] )

§

fn visit_extension_name(&mut self, n: &ExtensionName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_family_name(&mut self, n: &FamilyName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_family_names(&mut self, n: &[FamilyName])

§

fn visit_flex(&mut self, n: &Flex)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_font_feature_values_prelude(&mut self, n: &FontFeatureValuesPrelude)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_forgiving_complex_selector(&mut self, n: &ForgivingComplexSelector)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_forgiving_complex_selectors(&mut self, n: &[ForgivingComplexSelector])

§

fn visit_forgiving_relative_selector(&mut self, n: &ForgivingRelativeSelector)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_forgiving_relative_selector_list( &mut self, n: &ForgivingRelativeSelectorList )

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_forgiving_relative_selectors( &mut self, n: &[ForgivingRelativeSelector] )

§

fn visit_forgiving_selector_list(&mut self, n: &ForgivingSelectorList)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_frequency(&mut self, n: &Frequency)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_frequency_percentage(&mut self, n: &FrequencyPercentage)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_function(&mut self, n: &Function)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_function_name(&mut self, n: &FunctionName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_general_enclosed(&mut self, n: &GeneralEnclosed)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_hex_color(&mut self, n: &HexColor)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_hue(&mut self, n: &Hue)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_i_32(&mut self, n: &i32)

§

fn visit_id_selector(&mut self, n: &IdSelector)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ident(&mut self, n: &Ident)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_idents(&mut self, n: &[Ident])

§

fn visit_import_conditions(&mut self, n: &ImportConditions)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_import_href(&mut self, n: &ImportHref)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_import_layer_name(&mut self, n: &ImportLayerName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_import_prelude(&mut self, n: &ImportPrelude)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_important_flag(&mut self, n: &ImportantFlag)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_integer(&mut self, n: &Integer)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_keyframe_block(&mut self, n: &KeyframeBlock)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_keyframe_selector(&mut self, n: &KeyframeSelector)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_keyframe_selectors(&mut self, n: &[KeyframeSelector])

§

fn visit_keyframes_name(&mut self, n: &KeyframesName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_keyframes_pseudo_function(&mut self, n: &KeyframesPseudoFunction)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_keyframes_pseudo_prefix(&mut self, n: &KeyframesPseudoPrefix)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_layer_name(&mut self, n: &LayerName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_layer_name_list(&mut self, n: &LayerNameList)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_layer_names(&mut self, n: &[LayerName])

§

fn visit_layer_prelude(&mut self, n: &LayerPrelude)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_length(&mut self, n: &Length)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_length_percentage(&mut self, n: &LengthPercentage)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_list_of_component_values(&mut self, n: &ListOfComponentValues)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_and(&mut self, n: &MediaAnd)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_condition(&mut self, n: &MediaCondition)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_condition_all_type(&mut self, n: &MediaConditionAllType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_condition_all_types(&mut self, n: &[MediaConditionAllType])

§

fn visit_media_condition_type(&mut self, n: &MediaConditionType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_condition_without_or(&mut self, n: &MediaConditionWithoutOr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_condition_without_or_type( &mut self, n: &MediaConditionWithoutOrType )

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_condition_without_or_types( &mut self, n: &[MediaConditionWithoutOrType] )

§

fn visit_media_feature(&mut self, n: &MediaFeature)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_feature_boolean(&mut self, n: &MediaFeatureBoolean)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_feature_name(&mut self, n: &MediaFeatureName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_feature_plain(&mut self, n: &MediaFeaturePlain)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_feature_range(&mut self, n: &MediaFeatureRange)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_feature_range_comparison( &mut self, n: &MediaFeatureRangeComparison )

§

fn visit_media_feature_range_interval(&mut self, n: &MediaFeatureRangeInterval)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_feature_value(&mut self, n: &MediaFeatureValue)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_in_parens(&mut self, n: &MediaInParens)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_not(&mut self, n: &MediaNot)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_or(&mut self, n: &MediaOr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_queries(&mut self, n: &[MediaQuery])

§

fn visit_media_query(&mut self, n: &MediaQuery)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_query_list(&mut self, n: &MediaQueryList)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_media_type(&mut self, n: &MediaType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_named_namespace(&mut self, n: &NamedNamespace)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_namespace(&mut self, n: &Namespace)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_namespace_prefix(&mut self, n: &NamespacePrefix)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_namespace_prelude(&mut self, n: &NamespacePrelude)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_namespace_prelude_uri(&mut self, n: &NamespacePreludeUri)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_nesting_selector(&mut self, n: &NestingSelector)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_number(&mut self, n: &Number)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_opt_at_rule_prelude(&mut self, n: Option<&Box<AtRulePrelude>>)

§

fn visit_opt_atom(&mut self, n: Option<&Atom>)

§

fn visit_opt_attribute_selector_matcher( &mut self, n: Option<&AttributeSelectorMatcher> )

§

fn visit_opt_attribute_selector_modifier( &mut self, n: Option<&AttributeSelectorModifier> )

§

fn visit_opt_attribute_selector_value( &mut self, n: Option<&AttributeSelectorValue> )

§

fn visit_opt_combinator(&mut self, n: Option<&Combinator>)

§

fn visit_opt_container_name(&mut self, n: Option<&ContainerName>)

§

fn visit_opt_forgiving_selector_list( &mut self, n: Option<&ForgivingSelectorList> )

§

fn visit_opt_function(&mut self, n: Option<&Box<Function>>)

§

fn visit_opt_i_32(&mut self, n: Option<&i32>)

§

fn visit_opt_ident(&mut self, n: Option<&Ident>)

§

fn visit_opt_import_conditions(&mut self, n: Option<&Box<ImportConditions>>)

§

fn visit_opt_import_layer_name(&mut self, n: Option<&Box<ImportLayerName>>)

§

fn visit_opt_important_flag(&mut self, n: Option<&ImportantFlag>)

§

fn visit_opt_media_condition_type( &mut self, n: Option<&Box<MediaConditionType>> )

§

fn visit_opt_media_query_list(&mut self, n: Option<&Box<MediaQueryList>>)

§

fn visit_opt_media_type(&mut self, n: Option<&MediaType>)

§

fn visit_opt_namespace(&mut self, n: Option<&Namespace>)

§

fn visit_opt_namespace_prefix(&mut self, n: Option<&NamespacePrefix>)

§

fn visit_opt_nesting_selector(&mut self, n: Option<&NestingSelector>)

§

fn visit_opt_number(&mut self, n: Option<&Number>)

§

fn visit_opt_page_selector_pseudos(&mut self, n: Option<&[PageSelectorPseudo]>)

§

fn visit_opt_page_selector_type(&mut self, n: Option<&PageSelectorType>)

§

fn visit_opt_pseudo_class_selector_children_vec( &mut self, n: Option<&[PseudoClassSelectorChildren]> )

§

fn visit_opt_pseudo_element_selector_children_vec( &mut self, n: Option<&[PseudoElementSelectorChildren]> )

§

fn visit_opt_simple_block(&mut self, n: Option<&SimpleBlock>)

§

fn visit_opt_type_selector(&mut self, n: Option<&Box<TypeSelector>>)

§

fn visit_opt_url_modifiers(&mut self, n: Option<&[UrlModifier]>)

§

fn visit_opt_url_value(&mut self, n: Option<&Box<UrlValue>>)

§

fn visit_page_selector(&mut self, n: &PageSelector)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_page_selector_list(&mut self, n: &PageSelectorList)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_page_selector_pseudo(&mut self, n: &PageSelectorPseudo)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_page_selector_pseudos(&mut self, n: &[PageSelectorPseudo])

§

fn visit_page_selector_type(&mut self, n: &PageSelectorType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_page_selectors(&mut self, n: &[PageSelector])

§

fn visit_percentage(&mut self, n: &Percentage)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_pseudo_class_selector(&mut self, n: &PseudoClassSelector)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_pseudo_class_selector_children( &mut self, n: &PseudoClassSelectorChildren )

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_pseudo_class_selector_children_vec( &mut self, n: &[PseudoClassSelectorChildren] )

§

fn visit_pseudo_element_selector(&mut self, n: &PseudoElementSelector)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_pseudo_element_selector_children( &mut self, n: &PseudoElementSelectorChildren )

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_pseudo_element_selector_children_vec( &mut self, n: &[PseudoElementSelectorChildren] )

§

fn visit_qualified_rule(&mut self, n: &QualifiedRule)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_qualified_rule_prelude(&mut self, n: &QualifiedRulePrelude)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_query_in_parens(&mut self, n: &QueryInParens)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_ratio(&mut self, n: &Ratio)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_relative_selector(&mut self, n: &RelativeSelector)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_relative_selector_list(&mut self, n: &RelativeSelectorList)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_relative_selectors(&mut self, n: &[RelativeSelector])

§

fn visit_resolution(&mut self, n: &Resolution)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_rule(&mut self, n: &Rule)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_rules(&mut self, n: &[Rule])

§

fn visit_scope_range(&mut self, n: &ScopeRange)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_selector_list(&mut self, n: &SelectorList)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_sequence_of_custom_idents(&mut self, n: &SequenceOfCustomIdents)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_simple_block(&mut self, n: &SimpleBlock)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_size_feature(&mut self, n: &SizeFeature)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_size_feature_boolean(&mut self, n: &SizeFeatureBoolean)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_size_feature_name(&mut self, n: &SizeFeatureName)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_size_feature_plain(&mut self, n: &SizeFeaturePlain)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_size_feature_range(&mut self, n: &SizeFeatureRange)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_size_feature_range_comparison( &mut self, n: &SizeFeatureRangeComparison )

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_size_feature_range_interval(&mut self, n: &SizeFeatureRangeInterval)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_size_feature_value(&mut self, n: &SizeFeatureValue)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_span(&mut self, n: &Span)

§

fn visit_str(&mut self, n: &Str)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_style_block(&mut self, n: &StyleBlock)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_stylesheet(&mut self, n: &Stylesheet)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_subclass_selector(&mut self, n: &SubclassSelector)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_subclass_selectors(&mut self, n: &[SubclassSelector])

§

fn visit_supports_and(&mut self, n: &SupportsAnd)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_supports_condition(&mut self, n: &SupportsCondition)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_supports_condition_type(&mut self, n: &SupportsConditionType)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_supports_condition_types(&mut self, n: &[SupportsConditionType])

§

fn visit_supports_feature(&mut self, n: &SupportsFeature)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_supports_in_parens(&mut self, n: &SupportsInParens)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_supports_not(&mut self, n: &SupportsNot)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_supports_or(&mut self, n: &SupportsOr)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_tag_name_selector(&mut self, n: &TagNameSelector)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_time(&mut self, n: &Time)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_time_percentage(&mut self, n: &TimePercentage)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_token(&mut self, n: &Token)

§

fn visit_token_and_span(&mut self, n: &TokenAndSpan)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_type_selector(&mut self, n: &TypeSelector)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_unicode_range(&mut self, n: &UnicodeRange)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_universal_selector(&mut self, n: &UniversalSelector)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_unknown_dimension(&mut self, n: &UnknownDimension)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_url(&mut self, n: &Url)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_url_modifier(&mut self, n: &UrlModifier)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_url_modifiers(&mut self, n: &[UrlModifier])

§

fn visit_url_value(&mut self, n: &UrlValue)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_url_value_raw(&mut self, n: &UrlValueRaw)

This method can be overridden to customize the visitor behavior. Read more
§

fn visit_wq_name(&mut self, n: &WqName)

This method can be overridden to customize the visitor behavior. Read more
§

impl<V> Copy for All<V>
where V: Copy,

§

impl<V> Eq for All<V>
where V: Eq,

§

impl<V> StructuralPartialEq for All<V>

Auto Trait Implementations§

§

impl<V> Freeze for All<V>
where V: Freeze,

§

impl<V> RefUnwindSafe for All<V>
where V: RefUnwindSafe,

§

impl<V> Send for All<V>
where V: Send,

§

impl<V> Sync for All<V>
where V: Sync,

§

impl<V> Unpin for All<V>
where V: Unpin,

§

impl<V> UnwindSafe for All<V>
where V: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> ArchivePointee for T

§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Conv for T

§

fn conv<T>(self) -> T
where Self: Into<T>,

Converts self into T using Into<T>. Read more
§

impl<F, W, T, D> Deserialize<With<T, W>, D> for F
where W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,

§

fn deserialize( &self, deserializer: &mut D ) -> Result<With<T, W>, <D as Fallible>::Error>

Deserializes using the given deserializer
source§

impl<T, E> Emit<&T> for E
where E: Emit<T>, T: Spanned,

source§

fn emit(&mut self, node: &&T) -> Result<(), Error>

source§

impl<T, E> Emit<Box<T>> for E
where E: Emit<T>, T: Spanned,

source§

fn emit(&mut self, node: &Box<T>) -> Result<(), Error>

source§

impl<T, E> Emit<Option<T>> for E
where E: Emit<T>, T: Spanned,

source§

fn emit(&mut self, node: &Option<T>) -> Result<(), Error>

§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<T> FmtForward for T

§

fn fmt_binary(self) -> FmtBinary<Self>
where Self: Binary,

Causes self to use its Binary implementation when Debug-formatted.
§

fn fmt_display(self) -> FmtDisplay<Self>
where Self: Display,

Causes self to use its Display implementation when Debug-formatted.
§

fn fmt_lower_exp(self) -> FmtLowerExp<Self>
where Self: LowerExp,

Causes self to use its LowerExp implementation when Debug-formatted.
§

fn fmt_lower_hex(self) -> FmtLowerHex<Self>
where Self: LowerHex,

Causes self to use its LowerHex implementation when Debug-formatted.
§

fn fmt_octal(self) -> FmtOctal<Self>
where Self: Octal,

Causes self to use its Octal implementation when Debug-formatted.
§

fn fmt_pointer(self) -> FmtPointer<Self>
where Self: Pointer,

Causes self to use its Pointer implementation when Debug-formatted.
§

fn fmt_upper_exp(self) -> FmtUpperExp<Self>
where Self: UpperExp,

Causes self to use its UpperExp implementation when Debug-formatted.
§

fn fmt_upper_hex(self) -> FmtUpperHex<Self>
where Self: UpperHex,

Causes self to use its UpperHex implementation when Debug-formatted.
§

fn fmt_list(self) -> FmtList<Self>
where &'a Self: for<'a> IntoIterator,

Formats each item in a sequence. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> ImplicitClone for T
where T: Clone,

source§

fn clone_quote_var(&self) -> Self

Available on crate feature ecma_quote only.
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> LayoutRaw for T

§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Gets the layout of the type.
§

impl<D> OwoColorize for D

§

fn fg<C>(&self) -> FgColorDisplay<'_, C, Self>
where C: Color,

Set the foreground color generically Read more
§

fn bg<C>(&self) -> BgColorDisplay<'_, C, Self>
where C: Color,

Set the background color generically. Read more
§

fn black<'a>(&'a self) -> FgColorDisplay<'a, Black, Self>

Change the foreground color to black
§

fn on_black<'a>(&'a self) -> BgColorDisplay<'a, Black, Self>

Change the background color to black
§

fn red<'a>(&'a self) -> FgColorDisplay<'a, Red, Self>

Change the foreground color to red
§

fn on_red<'a>(&'a self) -> BgColorDisplay<'a, Red, Self>

Change the background color to red
§

fn green<'a>(&'a self) -> FgColorDisplay<'a, Green, Self>

Change the foreground color to green
§

fn on_green<'a>(&'a self) -> BgColorDisplay<'a, Green, Self>

Change the background color to green
§

fn yellow<'a>(&'a self) -> FgColorDisplay<'a, Yellow, Self>

Change the foreground color to yellow
§

fn on_yellow<'a>(&'a self) -> BgColorDisplay<'a, Yellow, Self>

Change the background color to yellow
§

fn blue<'a>(&'a self) -> FgColorDisplay<'a, Blue, Self>

Change the foreground color to blue
§

fn on_blue<'a>(&'a self) -> BgColorDisplay<'a, Blue, Self>

Change the background color to blue
§

fn magenta<'a>(&'a self) -> FgColorDisplay<'a, Magenta, Self>

Change the foreground color to magenta
§

fn on_magenta<'a>(&'a self) -> BgColorDisplay<'a, Magenta, Self>

Change the background color to magenta
§

fn purple<'a>(&'a self) -> FgColorDisplay<'a, Magenta, Self>

Change the foreground color to purple
§

fn on_purple<'a>(&'a self) -> BgColorDisplay<'a, Magenta, Self>

Change the background color to purple
§

fn cyan<'a>(&'a self) -> FgColorDisplay<'a, Cyan, Self>

Change the foreground color to cyan
§

fn on_cyan<'a>(&'a self) -> BgColorDisplay<'a, Cyan, Self>

Change the background color to cyan
§

fn white<'a>(&'a self) -> FgColorDisplay<'a, White, Self>

Change the foreground color to white
§

fn on_white<'a>(&'a self) -> BgColorDisplay<'a, White, Self>

Change the background color to white
§

fn default_color<'a>(&'a self) -> FgColorDisplay<'a, Default, Self>

Change the foreground color to the terminal default
§

fn on_default_color<'a>(&'a self) -> BgColorDisplay<'a, Default, Self>

Change the background color to the terminal default
§

fn bright_black<'a>(&'a self) -> FgColorDisplay<'a, BrightBlack, Self>

Change the foreground color to bright black
§

fn on_bright_black<'a>(&'a self) -> BgColorDisplay<'a, BrightBlack, Self>

Change the background color to bright black
§

fn bright_red<'a>(&'a self) -> FgColorDisplay<'a, BrightRed, Self>

Change the foreground color to bright red
§

fn on_bright_red<'a>(&'a self) -> BgColorDisplay<'a, BrightRed, Self>

Change the background color to bright red
§

fn bright_green<'a>(&'a self) -> FgColorDisplay<'a, BrightGreen, Self>

Change the foreground color to bright green
§

fn on_bright_green<'a>(&'a self) -> BgColorDisplay<'a, BrightGreen, Self>

Change the background color to bright green
§

fn bright_yellow<'a>(&'a self) -> FgColorDisplay<'a, BrightYellow, Self>

Change the foreground color to bright yellow
§

fn on_bright_yellow<'a>(&'a self) -> BgColorDisplay<'a, BrightYellow, Self>

Change the background color to bright yellow
§

fn bright_blue<'a>(&'a self) -> FgColorDisplay<'a, BrightBlue, Self>

Change the foreground color to bright blue
§

fn on_bright_blue<'a>(&'a self) -> BgColorDisplay<'a, BrightBlue, Self>

Change the background color to bright blue
§

fn bright_magenta<'a>(&'a self) -> FgColorDisplay<'a, BrightMagenta, Self>

Change the foreground color to bright magenta
§

fn on_bright_magenta<'a>(&'a self) -> BgColorDisplay<'a, BrightMagenta, Self>

Change the background color to bright magenta
§

fn bright_purple<'a>(&'a self) -> FgColorDisplay<'a, BrightMagenta, Self>

Change the foreground color to bright purple
§

fn on_bright_purple<'a>(&'a self) -> BgColorDisplay<'a, BrightMagenta, Self>

Change the background color to bright purple
§

fn bright_cyan<'a>(&'a self) -> FgColorDisplay<'a, BrightCyan, Self>

Change the foreground color to bright cyan
§

fn on_bright_cyan<'a>(&'a self) -> BgColorDisplay<'a, BrightCyan, Self>

Change the background color to bright cyan
§

fn bright_white<'a>(&'a self) -> FgColorDisplay<'a, BrightWhite, Self>

Change the foreground color to bright white
§

fn on_bright_white<'a>(&'a self) -> BgColorDisplay<'a, BrightWhite, Self>

Change the background color to bright white
§

fn bold<'a>(&'a self) -> BoldDisplay<'a, Self>

Make the text bold
§

fn dimmed<'a>(&'a self) -> DimDisplay<'a, Self>

Make the text dim
§

fn italic<'a>(&'a self) -> ItalicDisplay<'a, Self>

Make the text italicized
§

fn underline<'a>(&'a self) -> UnderlineDisplay<'a, Self>

Make the text italicized
Make the text blink
Make the text blink (but fast!)
§

fn reversed<'a>(&'a self) -> ReversedDisplay<'a, Self>

Swap the foreground and background colors
§

fn hidden<'a>(&'a self) -> HiddenDisplay<'a, Self>

Hide the text
§

fn strikethrough<'a>(&'a self) -> StrikeThroughDisplay<'a, Self>

Cross out the text
§

fn color<Color>(&self, color: Color) -> FgDynColorDisplay<'_, Color, Self>
where Color: DynColor,

Set the foreground color at runtime. Only use if you do not know which color will be used at compile-time. If the color is constant, use either OwoColorize::fg or a color-specific method, such as OwoColorize::green, Read more
§

fn on_color<Color>(&self, color: Color) -> BgDynColorDisplay<'_, Color, Self>
where Color: DynColor,

Set the background color at runtime. Only use if you do not know what color to use at compile-time. If the color is constant, use either OwoColorize::bg or a color-specific method, such as OwoColorize::on_yellow, Read more
§

fn fg_rgb<const R: u8, const G: u8, const B: u8>( &self ) -> FgColorDisplay<'_, CustomColor<R, G, B>, Self>

Set the foreground color to a specific RGB value.
§

fn bg_rgb<const R: u8, const G: u8, const B: u8>( &self ) -> BgColorDisplay<'_, CustomColor<R, G, B>, Self>

Set the background color to a specific RGB value.
§

fn truecolor(&self, r: u8, g: u8, b: u8) -> FgDynColorDisplay<'_, Rgb, Self>

Sets the foreground color to an RGB value.
§

fn on_truecolor(&self, r: u8, g: u8, b: u8) -> BgDynColorDisplay<'_, Rgb, Self>

Sets the background color to an RGB value.
§

fn style(&self, style: Style) -> Styled<&Self>

Apply a runtime-determined style
source§

impl<T, P> Parse<Box<T>> for P
where P: Parse<T>,

source§

fn parse(&mut self) -> Result<Box<T>, Error>

§

impl<T> Pipe for T
where T: ?Sized,

§

fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
where Self: Sized,

Pipes by value. This is generally the method you want to use. Read more
§

fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R
where R: 'a,

Borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R
where R: 'a,

Mutably borrows self and passes that borrow into the pipe function. Read more
§

fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
where Self: Borrow<B>, B: 'a + ?Sized, R: 'a,

Borrows self, then passes self.borrow() into the pipe function. Read more
§

fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> R
where Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.borrow_mut() into the pipe function. Read more
§

fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
where Self: AsRef<U>, U: 'a + ?Sized, R: 'a,

Borrows self, then passes self.as_ref() into the pipe function.
§

fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
where Self: AsMut<U>, U: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.as_mut() into the pipe function.
§

fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
where Self: Deref<Target = T>, T: 'a + ?Sized, R: 'a,

Borrows self, then passes self.deref() into the pipe function.
§

fn pipe_deref_mut<'a, T, R>( &'a mut self, func: impl FnOnce(&'a mut T) -> R ) -> R
where Self: DerefMut<Target = T> + Deref, T: 'a + ?Sized, R: 'a,

Mutably borrows self, then passes self.deref_mut() into the pipe function.
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

impl<T> Pointee for T

§

type Metadata = ()

The type for metadata in pointers and references to Self.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
§

impl<T> Tap for T

§

fn tap(self, func: impl FnOnce(&Self)) -> Self

Immutable access to a value. Read more
§

fn tap_mut(self, func: impl FnOnce(&mut Self)) -> Self

Mutable access to a value. Read more
§

fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Immutable access to the Borrow<B> of a value. Read more
§

fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Mutable access to the BorrowMut<B> of a value. Read more
§

fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Immutable access to the AsRef<R> view of a value. Read more
§

fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Mutable access to the AsMut<R> view of a value. Read more
§

fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Immutable access to the Deref::Target of a value. Read more
§

fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Mutable access to the Deref::Target of a value. Read more
§

fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self

Calls .tap() only in debug builds, and is erased in release builds.
§

fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self

Calls .tap_mut() only in debug builds, and is erased in release builds.
§

fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
where Self: Borrow<B>, B: ?Sized,

Calls .tap_borrow() only in debug builds, and is erased in release builds.
§

fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
where Self: BorrowMut<B>, B: ?Sized,

Calls .tap_borrow_mut() only in debug builds, and is erased in release builds.
§

fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
where Self: AsRef<R>, R: ?Sized,

Calls .tap_ref() only in debug builds, and is erased in release builds.
§

fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
where Self: AsMut<R>, R: ?Sized,

Calls .tap_ref_mut() only in debug builds, and is erased in release builds.
§

fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
where Self: Deref<Target = T>, T: ?Sized,

Calls .tap_deref() only in debug builds, and is erased in release builds.
§

fn tap_deref_mut_dbg<T>(self, func: impl FnOnce(&mut T)) -> Self
where Self: DerefMut<Target = T> + Deref, T: ?Sized,

Calls .tap_deref_mut() only in debug builds, and is erased in release builds.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

impl<T> TryConv for T

§

fn try_conv<T>(self) -> Result<T, Self::Error>
where Self: TryInto<T>,

Attempts to convert self into T using TryInto<T>. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> Node for T
where T: ?Sized,