diff options
author | cc <cc@localhost> | 2025-08-20 20:09:34 -0700 |
---|---|---|
committer | cc <cc@localhost> | 2025-08-20 20:09:34 -0700 |
commit | abdbc42639d0acd6fc0db381f7cbe6a37928643f (patch) | |
tree | 61d779ad5fe85020d3301106b72c1d1f859200d6 /src/label_formats/label_format.rs | |
parent | a7ded0a844feac401be72a5b575cb0e0c3e12e01 (diff) |
Modularize Label Formats
Diffstat (limited to 'src/label_formats/label_format.rs')
-rw-r--r-- | src/label_formats/label_format.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/label_formats/label_format.rs b/src/label_formats/label_format.rs new file mode 100644 index 0000000..0f33932 --- /dev/null +++ b/src/label_formats/label_format.rs @@ -0,0 +1,5 @@ +pub struct LabelFormat { + pub buffer: Vec<u16>, + pub width: usize, + pub height: usize, +} |