Struct SubdiagnosticDeriveVariantBuilder

Source
struct SubdiagnosticDeriveVariantBuilder<'parent, 'a> {
    parent: &'parent SubdiagnosticDerive,
    variant: &'a VariantInfo<'a>,
    span: Span,
    formatting_init: TokenStream,
    fields: HashMap<String, TokenStream>,
    span_field: Option<(Ident, Span)>,
    applicability: Option<(TokenStream, Span)>,
    has_suggestion_parts: bool,
    has_subdiagnostic: bool,
    is_enum: bool,
}
Expand description

Tracks persistent information required for building up the call to add to the diagnostic for the final generated method. This is a separate struct to SubdiagnosticDerive only to be able to destructure and split self.builder and the self.structure up to avoid a double mut borrow later on.

Fields§

§parent: &'parent SubdiagnosticDerive

The identifier to use for the generated Diag instance.

§variant: &'a VariantInfo<'a>

Info for the current variant (or the type if not an enum).

§span: Span

Span for the entire type.

§formatting_init: TokenStream

Initialization of format strings for code suggestions.

§fields: HashMap<String, TokenStream>

Store a map of field name to its corresponding field. This is built on construction of the derive builder.

§span_field: Option<(Ident, Span)>

Identifier for the binding to the #[primary_span] field.

§applicability: Option<(TokenStream, Span)>

The binding to the #[applicability] field, if present.

§has_suggestion_parts: bool

Set to true when a #[suggestion_part] field is encountered, used to generate an error during finalization if still false.

§has_subdiagnostic: bool

Set to true when a #[subdiagnostic] field is encountered, used to suppress the error emitted when no subdiagnostic kinds are specified on the variant itself.

§is_enum: bool

Set to true when this variant is an enum variant rather than just the body of a struct.

Implementations§

Source§

impl<'parent, 'a> SubdiagnosticDeriveVariantBuilder<'parent, 'a>

Source

fn identify_kind( &mut self, ) -> Result<Vec<(SubdiagnosticKind, Path, bool)>, DiagnosticDeriveError>

Source

fn generate_field_arg(&mut self, binding_info: &BindingInfo<'_>) -> TokenStream

Generates the code for a field with no attributes.

Source

fn generate_field_attr_code( &mut self, binding: &BindingInfo<'_>, kind_stats: KindsStatistics, ) -> TokenStream

Generates the necessary code for all attributes on a field.

Source

fn generate_field_code_inner( &mut self, kind_stats: KindsStatistics, attr: &Attribute, info: FieldInfo<'_>, clone_suggestion_code: bool, ) -> Result<TokenStream, DiagnosticDeriveError>

Source

fn generate_field_code_inner_path( &mut self, kind_stats: KindsStatistics, attr: &Attribute, info: FieldInfo<'_>, path: Path, ) -> Result<TokenStream, DiagnosticDeriveError>

Generates the code for a [Meta::Path]-like attribute on a field (e.g. #[primary_span]).

Source

fn generate_field_code_inner_list( &mut self, kind_stats: KindsStatistics, attr: &Attribute, info: FieldInfo<'_>, list: &MetaList, clone_suggestion_code: bool, ) -> Result<TokenStream, DiagnosticDeriveError>

Generates the code for a [Meta::List]-like attribute on a field (e.g. #[suggestion_part(code = "...")]).

Source

pub(crate) fn into_tokens( &mut self, ) -> Result<TokenStream, DiagnosticDeriveError>

Trait Implementations§

Source§

impl<'parent, 'a> HasFieldMap for SubdiagnosticDeriveVariantBuilder<'parent, 'a>

Source§

fn get_field_binding(&self, field: &String) -> Option<&TokenStream>

Returns the binding for the field with the given name, if it exists on the type.
Source§

fn build_format(&self, input: &str, span: Span) -> TokenStream

In the strings in the attributes supplied to this macro, we want callers to be able to reference fields in the format string. For example: Read more

Auto Trait Implementations§

§

impl<'parent, 'a> Freeze for SubdiagnosticDeriveVariantBuilder<'parent, 'a>

§

impl<'parent, 'a> RefUnwindSafe for SubdiagnosticDeriveVariantBuilder<'parent, 'a>

§

impl<'parent, 'a> !Send for SubdiagnosticDeriveVariantBuilder<'parent, 'a>

§

impl<'parent, 'a> !Sync for SubdiagnosticDeriveVariantBuilder<'parent, 'a>

§

impl<'parent, 'a> Unpin for SubdiagnosticDeriveVariantBuilder<'parent, 'a>

§

impl<'parent, 'a> UnwindSafe for SubdiagnosticDeriveVariantBuilder<'parent, 'a>

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
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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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.