Struct rustc_expand::placeholders::PlaceholderExpander

source ·
pub struct PlaceholderExpander {
    expanded_fragments: FxHashMap<NodeId, AstFragment>,
}

Fields§

§expanded_fragments: FxHashMap<NodeId, AstFragment>

Implementations§

source§

impl PlaceholderExpander

source

pub fn add(&mut self, id: NodeId, fragment: AstFragment)

source

fn remove(&mut self, id: NodeId) -> AstFragment

Trait Implementations§

source§

impl Default for PlaceholderExpander

source§

fn default() -> PlaceholderExpander

Returns the “default value” for a type. Read more
source§

impl MutVisitor for PlaceholderExpander

source§

fn flat_map_arm(&mut self, arm: Arm) -> SmallVec<[Arm; 1]>

source§

fn flat_map_expr_field(&mut self, field: ExprField) -> SmallVec<[ExprField; 1]>

source§

fn flat_map_pat_field(&mut self, fp: PatField) -> SmallVec<[PatField; 1]>

source§

fn flat_map_generic_param( &mut self, param: GenericParam ) -> SmallVec<[GenericParam; 1]>

source§

fn flat_map_param(&mut self, p: Param) -> SmallVec<[Param; 1]>

source§

fn flat_map_field_def(&mut self, sf: FieldDef) -> SmallVec<[FieldDef; 1]>

source§

fn flat_map_variant(&mut self, variant: Variant) -> SmallVec<[Variant; 1]>

source§

fn flat_map_item(&mut self, item: P<Item>) -> SmallVec<[P<Item>; 1]>

source§

fn flat_map_trait_item( &mut self, item: P<AssocItem> ) -> SmallVec<[P<AssocItem>; 1]>

source§

fn flat_map_impl_item( &mut self, item: P<AssocItem> ) -> SmallVec<[P<AssocItem>; 1]>

source§

fn flat_map_foreign_item( &mut self, item: P<ForeignItem> ) -> SmallVec<[P<ForeignItem>; 1]>

source§

fn visit_expr(&mut self, expr: &mut P<Expr>)

source§

fn visit_method_receiver_expr(&mut self, expr: &mut P<Expr>)

This method is a hack to workaround unstable of stmt_expr_attributes. It can be removed once that feature is stabilized.
source§

fn filter_map_expr(&mut self, expr: P<Expr>) -> Option<P<Expr>>

source§

fn flat_map_stmt(&mut self, stmt: Stmt) -> SmallVec<[Stmt; 1]>

source§

fn visit_pat(&mut self, pat: &mut P<Pat>)

source§

fn visit_ty(&mut self, ty: &mut P<Ty>)

source§

fn visit_crate(&mut self, krate: &mut Crate)

source§

const VISIT_TOKENS: bool = false

Mutable token visiting only exists for the macro_rules token marker and should not be used otherwise. Token visitor would be entirely separate from the regular visitor if the marker didn’t have to visit AST fragments in nonterminal tokens.
source§

fn visit_meta_list_item(&mut self, list_item: &mut NestedMetaItem)

source§

fn visit_meta_item(&mut self, meta_item: &mut MetaItem)

source§

fn visit_use_tree(&mut self, use_tree: &mut UseTree)

source§

fn visit_fn_header(&mut self, header: &mut FnHeader)

source§

fn visit_item_kind(&mut self, i: &mut ItemKind)

source§

fn visit_fn_decl(&mut self, d: &mut P<FnDecl>)

source§

fn visit_coroutine_kind(&mut self, a: &mut CoroutineKind)

source§

fn visit_closure_binder(&mut self, b: &mut ClosureBinder)

source§

fn visit_block(&mut self, b: &mut P<Block>)

source§

fn visit_anon_const(&mut self, c: &mut AnonConst)

source§

fn visit_generic_arg(&mut self, arg: &mut GenericArg)

source§

fn visit_lifetime(&mut self, l: &mut Lifetime)

source§

fn visit_constraint(&mut self, t: &mut AssocConstraint)

source§

fn visit_foreign_mod(&mut self, nm: &mut ForeignMod)

source§

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

source§

fn visit_path(&mut self, p: &mut Path)

source§

fn visit_qself(&mut self, qs: &mut Option<P<QSelf>>)

source§

fn visit_generic_args(&mut self, p: &mut GenericArgs)

source§

fn visit_angle_bracketed_parameter_data(&mut self, p: &mut AngleBracketedArgs)

source§

fn visit_parenthesized_parameter_data(&mut self, p: &mut ParenthesizedArgs)

source§

fn visit_local(&mut self, l: &mut P<Local>)

source§

fn visit_mac_call(&mut self, mac: &mut MacCall)

source§

fn visit_macro_def(&mut self, def: &mut MacroDef)

source§

fn visit_label(&mut self, label: &mut Label)

source§

fn visit_attribute(&mut self, at: &mut Attribute)

source§

fn visit_generics(&mut self, generics: &mut Generics)

source§

fn visit_trait_ref(&mut self, tr: &mut TraitRef)

source§

fn visit_poly_trait_ref(&mut self, p: &mut PolyTraitRef)

source§

fn visit_variant_data(&mut self, vdata: &mut VariantData)

source§

fn visit_param_bound(&mut self, tpb: &mut GenericBound)

source§

fn visit_precise_capturing_arg(&mut self, arg: &mut PreciseCapturingArg)

source§

fn visit_mt(&mut self, mt: &mut MutTy)

source§

fn visit_where_clause(&mut self, where_clause: &mut WhereClause)

source§

fn visit_where_predicate(&mut self, where_predicate: &mut WherePredicate)

source§

fn visit_vis(&mut self, vis: &mut Visibility)

source§

fn visit_id(&mut self, _id: &mut NodeId)

source§

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

source§

fn visit_inline_asm(&mut self, asm: &mut InlineAsm)

source§

fn visit_inline_asm_sym(&mut self, sym: &mut InlineAsmSym)

source§

fn visit_format_args(&mut self, fmt: &mut FormatArgs)

source§

fn visit_capture_by(&mut self, capture_by: &mut CaptureBy)

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Aligned for T

source§

const ALIGN: Alignment = _

Alignment of Self.
source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
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
source§

impl<T, R> CollectAndApply<T, R> for T

source§

fn collect_and_apply<I, F>(iter: I, f: F) -> R
where I: Iterator<Item = T>, F: FnOnce(&[T]) -> R,

Equivalent to f(&iter.collect::<Vec<_>>()).

§

type Output = R

source§

impl<T> Filterable for T

source§

fn filterable( self, filter_name: &'static str ) -> RequestFilterDataProvider<T, fn(_: DataRequest<'_>) -> bool>

Creates a filterable data provider with the given name for debugging. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

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.

source§

impl<T> Pointable for T

source§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
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.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

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
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<'a, T> Captures<'a> for T
where T: ?Sized,

source§

impl<T> ErasedDestructor for T
where T: 'static,

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 32 bytes