wt_blk 0.3.1

Parser and unpacker for the BLK file format
Documentation
1
2
3
4
5
6
7
8
9
10
11
use wt_version::Version;

use crate::vromf::enums::{HeaderType, Packing, PlatformType};

#[derive(Debug, Default, Clone)]
pub struct Metadata {
	pub header_type: Option<HeaderType>,
	pub platform:    Option<PlatformType>,
	pub packing:     Option<Packing>,
	pub version:     Option<Version>,
}