mirror of
https://github.com/starovoid/rxing.git
synced 2026-07-26 04:12:34 +00:00
partial stub out of decoder
This commit is contained in:
16
src/common/cpp_essentials/structured_append.rs
Normal file
16
src/common/cpp_essentials/structured_append.rs
Normal 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(),
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user