notcurses/rust/src/dimension.rs
2021-01-08 19:25:46 +01:00

8 lines
201 B
Rust

//! `NcDim`, `NcOffset`
/// Represents a dimension in rows or columns. Can't be negative.
pub type NcDim = u32;
/// Represents an offset in rows or columns. Can be negative.
pub type NcOffset = i32;