About
Contact
QtCreator
KDevelop
Solarized
1
#[
derive
(Default)]
2
pub
struct
Column
{
3
pub
offset
:
usize
,
4
pub
width
:
usize
,
5
}
6
7
impl
Column
{
8
pub
fn
new
(
offset
:
usize
,
width
:
usize
) -> Self {
9
Self {
offset
,
width
}
10
}
11
}
12