2022-08-05 16:43:52 +00:00
|
|
|
use rustc_errors::DiagnosticArgFromDisplay;
|
2022-09-18 15:47:31 +00:00
|
|
|
use rustc_macros::{Diagnostic, LintDiagnostic, Subdiagnostic};
|
2022-06-22 13:17:34 +00:00
|
|
|
use rustc_span::{Span, Symbol};
|
|
|
|
|
2022-09-18 15:46:56 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(privacy_field_is_private, code = "E0451")]
|
2022-06-22 13:17:34 +00:00
|
|
|
pub struct FieldIsPrivate {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
pub field_name: Symbol,
|
|
|
|
pub variant_descr: &'static str,
|
|
|
|
pub def_path_str: String,
|
|
|
|
#[subdiagnostic]
|
|
|
|
pub label: FieldIsPrivateLabel,
|
|
|
|
}
|
|
|
|
|
2022-09-18 15:47:31 +00:00
|
|
|
#[derive(Subdiagnostic)]
|
2022-06-22 13:17:34 +00:00
|
|
|
pub enum FieldIsPrivateLabel {
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(privacy_field_is_private_is_update_syntax_label)]
|
2022-06-22 13:17:34 +00:00
|
|
|
IsUpdateSyntax {
|
|
|
|
#[primary_span]
|
|
|
|
span: Span,
|
|
|
|
field_name: Symbol,
|
|
|
|
},
|
2022-10-22 09:07:54 +00:00
|
|
|
#[label(privacy_field_is_private_label)]
|
2022-06-22 13:17:34 +00:00
|
|
|
Other {
|
|
|
|
#[primary_span]
|
|
|
|
span: Span,
|
|
|
|
},
|
|
|
|
}
|
2022-06-22 12:31:24 +00:00
|
|
|
|
2022-09-18 15:46:56 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(privacy_item_is_private)]
|
2022-06-22 12:31:24 +00:00
|
|
|
pub struct ItemIsPrivate<'a> {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
|
|
|
pub kind: &'a str,
|
2022-08-05 16:43:52 +00:00
|
|
|
pub descr: DiagnosticArgFromDisplay<'a>,
|
2022-06-22 12:31:24 +00:00
|
|
|
}
|
2022-06-22 12:42:30 +00:00
|
|
|
|
2022-09-18 15:46:56 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(privacy_unnamed_item_is_private)]
|
2022-06-22 12:42:30 +00:00
|
|
|
pub struct UnnamedItemIsPrivate {
|
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
pub kind: &'static str,
|
|
|
|
}
|
2022-06-22 13:11:39 +00:00
|
|
|
|
|
|
|
// Duplicate of `InPublicInterface` but with a different error code, shares the same slug.
|
2022-09-18 15:46:56 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(privacy_in_public_interface, code = "E0445")]
|
2022-06-22 13:11:39 +00:00
|
|
|
pub struct InPublicInterfaceTraits<'a> {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
|
|
|
pub vis_descr: &'static str,
|
|
|
|
pub kind: &'a str,
|
2022-08-05 16:43:52 +00:00
|
|
|
pub descr: DiagnosticArgFromDisplay<'a>,
|
2022-10-13 09:13:02 +00:00
|
|
|
#[label(privacy_visibility_label)]
|
2022-06-22 13:11:39 +00:00
|
|
|
pub vis_span: Span,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Duplicate of `InPublicInterfaceTraits` but with a different error code, shares the same slug.
|
2022-09-18 15:46:56 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(privacy_in_public_interface, code = "E0446")]
|
2022-06-22 13:11:39 +00:00
|
|
|
pub struct InPublicInterface<'a> {
|
|
|
|
#[primary_span]
|
|
|
|
#[label]
|
|
|
|
pub span: Span,
|
|
|
|
pub vis_descr: &'static str,
|
|
|
|
pub kind: &'a str,
|
2022-08-05 16:43:52 +00:00
|
|
|
pub descr: DiagnosticArgFromDisplay<'a>,
|
2022-10-13 09:13:02 +00:00
|
|
|
#[label(privacy_visibility_label)]
|
2022-06-22 13:11:39 +00:00
|
|
|
pub vis_span: Span,
|
|
|
|
}
|
2022-07-11 15:29:24 +00:00
|
|
|
|
2022-09-18 15:45:41 +00:00
|
|
|
#[derive(Diagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(privacy_report_effective_visibility)]
|
2022-09-12 07:57:34 +00:00
|
|
|
pub struct ReportEffectiveVisibility {
|
2022-08-14 14:05:17 +00:00
|
|
|
#[primary_span]
|
|
|
|
pub span: Span,
|
|
|
|
pub descr: String,
|
|
|
|
}
|
|
|
|
|
2022-07-11 15:29:24 +00:00
|
|
|
#[derive(LintDiagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(privacy_from_private_dep_in_public_interface)]
|
2022-07-11 15:29:24 +00:00
|
|
|
pub struct FromPrivateDependencyInPublicInterface<'a> {
|
|
|
|
pub kind: &'a str,
|
2022-08-05 16:43:52 +00:00
|
|
|
pub descr: DiagnosticArgFromDisplay<'a>,
|
2022-07-11 15:29:24 +00:00
|
|
|
pub krate: Symbol,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(LintDiagnostic)]
|
2022-10-22 09:07:54 +00:00
|
|
|
#[diag(privacy_private_in_public_lint)]
|
2022-07-11 15:29:24 +00:00
|
|
|
pub struct PrivateInPublicLint<'a> {
|
|
|
|
pub vis_descr: &'static str,
|
|
|
|
pub kind: &'a str,
|
2022-08-05 16:43:52 +00:00
|
|
|
pub descr: DiagnosticArgFromDisplay<'a>,
|
2022-07-11 15:29:24 +00:00
|
|
|
}
|