replace ValueStream with ListStream (#4621)

This commit is contained in:
Michael Angerman
2022-02-24 03:57:31 -08:00
committed by GitHub
parent 21c0f7d738
commit feb4f5c347
3 changed files with 6 additions and 6 deletions

View File

@ -19,7 +19,7 @@ pub enum Type {
Nothing,
Record(Vec<(String, Type)>),
Table,
ValueStream,
ListStream,
Unknown,
Error,
Binary,
@ -53,7 +53,7 @@ impl Display for Type {
Type::Nothing => write!(f, "nothing"),
Type::Number => write!(f, "number"),
Type::String => write!(f, "string"),
Type::ValueStream => write!(f, "value stream"),
Type::ListStream => write!(f, "list stream"),
Type::Unknown => write!(f, "unknown"),
Type::Error => write!(f, "error"),
Type::Binary => write!(f, "binary"),

View File

@ -195,7 +195,7 @@ impl ListStream {
impl Debug for ListStream {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("ValueStream").finish()
f.debug_struct("ListStream").finish()
}
}