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>
impl<'parent, 'a> SubdiagnosticDeriveVariantBuilder<'parent, 'a>
fn identify_kind( &mut self, ) -> Result<Vec<(SubdiagnosticKind, Path, bool)>, DiagnosticDeriveError>
Sourcefn generate_field_arg(&mut self, binding_info: &BindingInfo<'_>) -> TokenStream
fn generate_field_arg(&mut self, binding_info: &BindingInfo<'_>) -> TokenStream
Generates the code for a field with no attributes.
Sourcefn generate_field_attr_code(
&mut self,
binding: &BindingInfo<'_>,
kind_stats: KindsStatistics,
) -> TokenStream
fn generate_field_attr_code( &mut self, binding: &BindingInfo<'_>, kind_stats: KindsStatistics, ) -> TokenStream
Generates the necessary code for all attributes on a field.
fn generate_field_code_inner( &mut self, kind_stats: KindsStatistics, attr: &Attribute, info: FieldInfo<'_>, clone_suggestion_code: bool, ) -> Result<TokenStream, DiagnosticDeriveError>
Sourcefn generate_field_code_inner_path(
&mut self,
kind_stats: KindsStatistics,
attr: &Attribute,
info: FieldInfo<'_>,
path: Path,
) -> Result<TokenStream, DiagnosticDeriveError>
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]
).
Sourcefn generate_field_code_inner_list(
&mut self,
kind_stats: KindsStatistics,
attr: &Attribute,
info: FieldInfo<'_>,
list: &MetaList,
clone_suggestion_code: bool,
) -> Result<TokenStream, DiagnosticDeriveError>
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 = "...")]
).
pub(crate) fn into_tokens( &mut self, ) -> Result<TokenStream, DiagnosticDeriveError>
Trait Implementations§
Source§impl<'parent, 'a> HasFieldMap for SubdiagnosticDeriveVariantBuilder<'parent, 'a>
impl<'parent, 'a> HasFieldMap for SubdiagnosticDeriveVariantBuilder<'parent, 'a>
Source§fn get_field_binding(&self, field: &String) -> Option<&TokenStream>
fn get_field_binding(&self, field: &String) -> Option<&TokenStream>
Source§fn build_format(&self, input: &str, span: Span) -> TokenStream
fn build_format(&self, input: &str, span: Span) -> TokenStream
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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