iced-yoda/core/src/length.rs

7 lines
109 B
Rust
Raw Normal View History

2019-09-20 19:15:31 +02:00
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
pub enum Length {
Fill,
Shrink,
Units(u16),
}