@@ -26,7 +26,6 @@ pub(crate) enum Notification<'a> {
26
26
/// member, but the notification callback is already narrowed to
27
27
/// utils::notifications by the time tar unpacking is called.
28
28
SetDefaultBufferSize ( usize ) ,
29
- SetAutoInstall ( & ' a str ) ,
30
29
SetDefaultToolchain ( Option < & ' a ToolchainName > ) ,
31
30
SetOverrideToolchain ( & ' a Path , & ' a str ) ,
32
31
SetProfile ( & ' a str ) ,
@@ -70,8 +69,7 @@ impl Notification<'_> {
70
69
| ReadMetadataVersion ( _)
71
70
| InstalledToolchain ( _)
72
71
| UpdateHashMatches => NotificationLevel :: Debug ,
73
- SetAutoInstall ( _)
74
- | SetDefaultToolchain ( _)
72
+ SetDefaultToolchain ( _)
75
73
| SetOverrideToolchain ( _, _)
76
74
| SetProfile ( _)
77
75
| SetSelfUpdate ( _)
@@ -108,7 +106,6 @@ impl Display for Notification<'_> {
108
106
DownloadDataReceived ( data, _) => write ! ( f, "received some data of size {}" , data. len( ) ) ,
109
107
DownloadFinished ( _) => write ! ( f, "download finished" ) ,
110
108
DownloadFailed ( _) => write ! ( f, "download failed" ) ,
111
- SetAutoInstall ( auto) => write ! ( f, "auto install set to '{auto}'" ) ,
112
109
SetDefaultToolchain ( None ) => write ! ( f, "default toolchain unset" ) ,
113
110
SetDefaultToolchain ( Some ( name) ) => write ! ( f, "default toolchain set to '{name}'" ) ,
114
111
SetOverrideToolchain ( path, name) => write ! (
0 commit comments