We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f3fe1c commit fa5638fCopy full SHA for fa5638f
1 file changed
src/protocol/mod.rs
@@ -571,16 +571,6 @@ impl PendingValue {
571
value stream: a sequential list of values (state cached)
572
*/
573
574
-pub(crate) trait AsValueStream: Sized {
575
- fn from_value_stream(v: Vec<Value>) -> Self;
576
-}
577
-
578
-impl AsValueStream for Row {
579
- fn from_value_stream(v: Vec<Value>) -> Self {
580
- Row::new(v)
581
- }
582
583
584
#[derive(Debug, PartialEq)]
585
pub(crate) struct ValueStream {
586
element_count: ProtocolObjectDecodeState<usize, LfsValue<usize>>,
0 commit comments