partial stub out of decoder

This commit is contained in:
Henry Schimke
2023-03-27 11:45:26 -05:00
parent d2316408b5
commit 0636a63291
13 changed files with 977 additions and 317 deletions

View File

@@ -0,0 +1,16 @@
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct StructuredAppendInfo {
pub index: i32, // -1;
pub count: i32, // = -1;
pub id: String,
}
impl Default for StructuredAppendInfo {
fn default() -> Self {
Self {
index: -1,
count: -1,
id: Default::default(),
}
}
}