Avoid implementing Debug for QueryConfig
This commit is contained in:
parent
3fd7c4a17d
commit
3b26d71e04
4 changed files with 14 additions and 5 deletions
|
@ -88,6 +88,15 @@ impl<T: DepContext> HasDepContext for T {
|
|||
}
|
||||
}
|
||||
|
||||
impl<T: HasDepContext, Q: Copy> HasDepContext for (T, Q) {
|
||||
type DepKind = T::DepKind;
|
||||
type DepContext = T::DepContext;
|
||||
|
||||
fn dep_context(&self) -> &Self::DepContext {
|
||||
self.0.dep_context()
|
||||
}
|
||||
}
|
||||
|
||||
/// Describes the contents of the fingerprint generated by a given query.
|
||||
#[derive(Debug, PartialEq, Eq, Copy, Clone)]
|
||||
pub enum FingerprintStyle {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue