1
Fork 0

Cache more queries on disk.

This commit is contained in:
Camille GILLOT 2022-03-28 19:53:01 +02:00
parent 3a08bd7873
commit 9900ea352b
15 changed files with 104 additions and 83 deletions

View file

@ -228,7 +228,7 @@ impl fmt::Display for ImplPolarity {
}
}
#[derive(Clone, Debug, PartialEq, Eq, Copy, Hash, TyEncodable, TyDecodable, HashStable)]
#[derive(Clone, Debug, PartialEq, Eq, Copy, Hash, Encodable, Decodable, HashStable)]
pub enum Visibility {
/// Visible everywhere (including in other crates).
Public,
@ -1629,7 +1629,7 @@ where
}
}
#[derive(Copy, Clone, Debug, HashStable)]
#[derive(Copy, Clone, Debug, HashStable, Encodable, Decodable)]
pub struct Destructor {
/// The `DefId` of the destructor method
pub did: DefId,