diff --git a/src/trace/implementations/ord.rs b/src/trace/implementations/ord.rs index c29f3df52..989c274af 100644 --- a/src/trace/implementations/ord.rs +++ b/src/trace/implementations/ord.rs @@ -70,8 +70,6 @@ pub trait Layout { type KeyOffset: OrdOffset; /// Offsets to use from vals into updates. type ValOffset: OrdOffset; - /// Container for updates themselves. - type UpdateContainer: BatchContainer+Deref+RetainFrom; /// Container for update keys. type KeyContainer: BatchContainer::Key> @@ -93,7 +91,6 @@ impl Layout for Vector { type Target = U; type KeyOffset = O; type ValOffset = O; - type UpdateContainer = Vec; type KeyContainer = Vec; type ValContainer = Vec; } @@ -111,7 +108,6 @@ where type Target = U; type KeyOffset = O; type ValOffset = O; - type UpdateContainer = Vec; type KeyContainer = TimelyStack; type ValContainer = TimelyStack; }