Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
vendor
/
windows-metadata-0.58.0
/
src
/
column.rs
blob: 9a678daa8931b9c9d9996f980722246cee705bb3 [
file
] [
log
] [
blame
] [
edit
]
#[
derive
(
Default
)]
pub
struct
Column
{
pub
offset
:
usize
,
pub
width
:
usize
,
}
impl
Column
{
pub
fn
new
(
offset
:
usize
,
width
:
usize
)
->
Self
{
Self
{
offset
,
width
}
}
}