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>,