diff --git a/eden/mononoke/manifest/src/comparison.rs b/eden/mononoke/manifest/src/comparison.rs index d0c6208dd3..0ef10adbc9 100644 --- a/eden/mononoke/manifest/src/comparison.rs +++ b/eden/mononoke/manifest/src/comparison.rs @@ -287,8 +287,8 @@ pub fn compare_manifest_tree<'a, M, Store>( where Store: Send + Sync + 'static, M: AsyncManifest + Send + Sync + 'static, - M::TreeId: StoreLoadable + Send + Sync + Eq + std::fmt::Debug + 'static, - M::LeafId: Send + Sync + Eq + std::fmt::Debug + 'static, + M::TreeId: StoreLoadable + Send + Sync + Eq + 'static, + M::LeafId: Send + Sync + Eq + 'static, M::TrieMapType: TrieMapOps> + Eq, { let base_manifest_ids: Vec<_> = base_manifest_ids.into_iter().map(Some).collect();