From fa5638f18d6167de8bae02d031191fdcfb53da59 Mon Sep 17 00:00:00 2001 From: Sayan Nandan Date: Wed, 3 Jul 2024 00:19:49 +0530 Subject: [PATCH] misc: Remove unused trait --- src/protocol/mod.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/protocol/mod.rs b/src/protocol/mod.rs index bbbc930..961d6f3 100644 --- a/src/protocol/mod.rs +++ b/src/protocol/mod.rs @@ -571,16 +571,6 @@ impl PendingValue { value stream: a sequential list of values (state cached) */ -pub(crate) trait AsValueStream: Sized { - fn from_value_stream(v: Vec) -> Self; -} - -impl AsValueStream for Row { - fn from_value_stream(v: Vec) -> Self { - Row::new(v) - } -} - #[derive(Debug, PartialEq)] pub(crate) struct ValueStream { element_count: ProtocolObjectDecodeState>,