Download rustc component for rustfmt toolchain as well

This commit is contained in:
Mark Rousskov 2023-01-25 18:48:07 -05:00
parent 5b08c9f397
commit 652f79e835
5 changed files with 137 additions and 74 deletions

View file

@ -95,10 +95,7 @@ pub trait ForestObligation: Clone + Debug {
pub trait ObligationProcessor {
type Obligation: ForestObligation;
type Error: Debug;
type OUT: OutcomeTrait<
Obligation = Self::Obligation,
Error = Error<Self::Obligation, Self::Error>,
>;
type OUT: OutcomeTrait<Obligation = Self::Obligation, Error = Error<Self::Obligation, Self::Error>>;
fn needs_process_obligation(&self, obligation: &Self::Obligation) -> bool;