mirror of
https://github.com/starovoid/rxing.git
synced 2026-07-26 12:22:34 +00:00
17 lines
334 B
Rust
17 lines
334 B
Rust
#[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(),
|
|
}
|
|
}
|
|
}
|