mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			104 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| use std::error::Error;
 | |
| 
 | |
| use rustc_macros::{Diagnostic, Subdiagnostic};
 | |
| 
 | |
| #[derive(Diagnostic)]
 | |
| #[diag(driver_impl_rlink_unable_to_read)]
 | |
| pub(crate) struct RlinkUnableToRead {
 | |
|     pub err: std::io::Error,
 | |
| }
 | |
| 
 | |
| #[derive(Diagnostic)]
 | |
| #[diag(driver_impl_rlink_wrong_file_type)]
 | |
| pub(crate) struct RLinkWrongFileType;
 | |
| 
 | |
| #[derive(Diagnostic)]
 | |
| #[diag(driver_impl_rlink_empty_version_number)]
 | |
| pub(crate) struct RLinkEmptyVersionNumber;
 | |
| 
 | |
| #[derive(Diagnostic)]
 | |
| #[diag(driver_impl_rlink_encoding_version_mismatch)]
 | |
| pub(crate) struct RLinkEncodingVersionMismatch {
 | |
|     pub version_array: String,
 | |
|     pub rlink_version: u32,
 | |
| }
 | |
| 
 | |
| #[derive(Diagnostic)]
 | |
| #[diag(driver_impl_rlink_rustc_version_mismatch)]
 | |
| pub(crate) struct RLinkRustcVersionMismatch<'a> {
 | |
|     pub rustc_version: String,
 | |
|     pub current_version: &'a str,
 | |
| }
 | |
| 
 | |
| #[derive(Diagnostic)]
 | |
| #[diag(driver_impl_rlink_no_a_file)]
 | |
| pub(crate) struct RlinkNotAFile;
 | |
| 
 | |
| #[derive(Diagnostic)]
 | |
| #[diag(driver_impl_rlink_corrupt_file)]
 | |
| pub(crate) struct RlinkCorruptFile<'a> {
 | |
|     pub file: &'a std::path::Path,
 | |
| }
 | |
| 
 | |
| #[derive(Diagnostic)]
 | |
| #[diag(driver_impl_ice)]
 | |
| pub(crate) struct Ice;
 | |
| 
 | |
| #[derive(Diagnostic)]
 | |
| #[diag(driver_impl_ice_bug_report)]
 | |
| pub(crate) struct IceBugReport<'a> {
 | |
|     pub bug_report_url: &'a str,
 | |
| }
 | |
| 
 | |
| #[derive(Diagnostic)]
 | |
| #[diag(driver_impl_ice_bug_report_update_note)]
 | |
| pub(crate) struct UpdateNightlyNote;
 | |
| 
 | |
| #[derive(Diagnostic)]
 | |
| #[diag(driver_impl_ice_bug_report_internal_feature)]
 | |
| pub(crate) struct IceBugReportInternalFeature;
 | |
| 
 | |
| #[derive(Diagnostic)]
 | |
| #[diag(driver_impl_ice_version)]
 | |
| pub(crate) struct IceVersion<'a> {
 | |
|     pub version: &'a str,
 | |
|     pub triple: &'a str,
 | |
| }
 | |
| 
 | |
| #[derive(Diagnostic)]
 | |
| #[diag(driver_impl_ice_path)]
 | |
| pub(crate) struct IcePath {
 | |
|     pub path: std::path::PathBuf,
 | |
| }
 | |
| 
 | |
| #[derive(Diagnostic)]
 | |
| #[diag(driver_impl_ice_path_error)]
 | |
| pub(crate) struct IcePathError {
 | |
|     pub path: std::path::PathBuf,
 | |
|     pub error: String,
 | |
|     #[subdiagnostic]
 | |
|     pub env_var: Option<IcePathErrorEnv>,
 | |
| }
 | |
| 
 | |
| #[derive(Subdiagnostic)]
 | |
| #[note(driver_impl_ice_path_error_env)]
 | |
| pub(crate) struct IcePathErrorEnv {
 | |
|     pub env_var: std::path::PathBuf,
 | |
| }
 | |
| 
 | |
| #[derive(Diagnostic)]
 | |
| #[diag(driver_impl_ice_flags)]
 | |
| pub(crate) struct IceFlags {
 | |
|     pub flags: String,
 | |
| }
 | |
| 
 | |
| #[derive(Diagnostic)]
 | |
| #[diag(driver_impl_ice_exclude_cargo_defaults)]
 | |
| pub(crate) struct IceExcludeCargoDefaults;
 | |
| 
 | |
| #[derive(Diagnostic)]
 | |
| #[diag(driver_impl_unstable_feature_usage)]
 | |
| pub(crate) struct UnstableFeatureUsage {
 | |
|     pub error: Box<dyn Error>,
 | |
| }
 | 
