]> git.proxmox.com Git - rustc.git/blob - compiler/rustc_typeck/src/structured_errors/sized_unsized_cast.rs
New upstream version 1.65.0+dfsg1
[rustc.git] / compiler / rustc_typeck / src / structured_errors / sized_unsized_cast.rs
1 use crate::structured_errors::StructuredDiagnostic;
2 use rustc_errors::{DiagnosticBuilder, DiagnosticId, ErrorGuaranteed};
3 use rustc_middle::ty::{Ty, TypeVisitable};
4 use rustc_session::Session;
5 use rustc_span::Span;
6
7 pub struct SizedUnsizedCast<'tcx> {
8 pub sess: &'tcx Session,
9 pub span: Span,
10 pub expr_ty: Ty<'tcx>,
11 pub cast_ty: String,
12 }
13
14 impl<'tcx> StructuredDiagnostic<'tcx> for SizedUnsizedCast<'tcx> {
15 fn session(&self) -> &Session {
16 self.sess
17 }
18
19 fn code(&self) -> DiagnosticId {
20 rustc_errors::error_code!(E0607)
21 }
22
23 fn diagnostic_common(&self) -> DiagnosticBuilder<'tcx, ErrorGuaranteed> {
24 let mut err = self.sess.struct_span_err_with_code(
25 self.span,
26 &format!(
27 "cannot cast thin pointer `{}` to fat pointer `{}`",
28 self.expr_ty, self.cast_ty
29 ),
30 self.code(),
31 );
32
33 if self.expr_ty.references_error() {
34 err.downgrade_to_delayed_bug();
35 }
36
37 err
38 }
39
40 fn diagnostic_extended(
41 &self,
42 mut err: DiagnosticBuilder<'tcx, ErrorGuaranteed>,
43 ) -> DiagnosticBuilder<'tcx, ErrorGuaranteed> {
44 err.help(
45 "Thin pointers are \"simple\" pointers: they are purely a reference to a
46 memory address.
47
48 Fat pointers are pointers referencing \"Dynamically Sized Types\" (also
49 called DST). DST don't have a statically known size, therefore they can
50 only exist behind some kind of pointers that contain additional
51 information. Slices and trait objects are DSTs. In the case of slices,
52 the additional information the fat pointer holds is their size.
53
54 To fix this error, don't try to cast directly between thin and fat
55 pointers.
56
57 For more information about casts, take a look at The Book:
58 https://doc.rust-lang.org/reference/expressions/operator-expr.html#type-cast-expressions",
59 );
60 err
61 }
62 }