windows-metadata 0.52.0

Windows metadata reader
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[derive(Default)]
pub struct Column {
    pub offset: usize,
    pub width: usize,
}

impl Column {
    pub fn new(offset: usize, width: usize) -> Self {
        Self { offset, width }
    }
}