@@ -26,7 +26,6 @@ pub(crate) enum Notification<'a> {
2626 /// member, but the notification callback is already narrowed to
2727 /// utils::notifications by the time tar unpacking is called.
2828 SetDefaultBufferSize ( usize ) ,
29- LookingForToolchain ( & ' a ToolchainDesc ) ,
3029 ToolchainDirectory ( & ' a Path ) ,
3130 UpdatingToolchain ( & ' a str ) ,
3231 InstallingToolchain ( & ' a str ) ,
@@ -59,7 +58,6 @@ impl Notification<'_> {
5958 | DownloadFinished ( _)
6059 | DownloadFailed ( _) => NotificationLevel :: Debug ,
6160 ToolchainDirectory ( _)
62- | LookingForToolchain ( _)
6361 | InstallingToolchain ( _)
6462 | UpdatingToolchain ( _)
6563 | ReadMetadataVersion ( _)
@@ -98,7 +96,6 @@ impl Display for Notification<'_> {
9896 DownloadDataReceived ( data, _) => write ! ( f, "received some data of size {}" , data. len( ) ) ,
9997 DownloadFinished ( _) => write ! ( f, "download finished" ) ,
10098 DownloadFailed ( _) => write ! ( f, "download failed" ) ,
101- LookingForToolchain ( name) => write ! ( f, "looking for installed toolchain '{name}'" ) ,
10299 ToolchainDirectory ( path) => write ! ( f, "toolchain directory: '{}'" , path. display( ) ) ,
103100 UpdatingToolchain ( name) => write ! ( f, "updating existing install for '{name}'" ) ,
104101 InstallingToolchain ( name) => write ! ( f, "installing toolchain '{name}'" ) ,
0 commit comments