pub struct Tlg {
pub tags: HashMap<Vec<u8>, Vec<u8>>,
pub version: u32,
pub width: u32,
pub height: u32,
pub color: TlgColorType,
pub data: Vec<u8>,
}
Expand description
TLG Image
Fields§
Tag dictionary
version: u32
TLG Version: 0=unknown, 5=v5, 6=v6
width: u32
Image width
height: u32
Image height
color: TlgColorType
Color type
data: Vec<u8>
Image data
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Tlg
impl RefUnwindSafe for Tlg
impl Send for Tlg
impl Sync for Tlg
impl Unpin for Tlg
impl UnwindSafe for Tlg
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more