summaryrefslogtreecommitdiffstats
path: root/vendor/windows-metadata/src/column.rs
blob: 9a678daa8931b9c9d9996f980722246cee705bb3 (plain)
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 }
    }
}