iced-yoda/core/src/length.rs
2019-09-20 19:15:31 +02:00

6 lines
109 B
Rust

#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
pub enum Length {
Fill,
Shrink,
Units(u16),
}