iced-yoda/core/src/length.rs

8 lines
170 B
Rust
Raw Normal View History

2019-09-24 15:15:34 +02:00
/// The strategy used to fill space in a specific dimension.
2019-09-20 19:15:31 +02:00
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
pub enum Length {
Fill,
Shrink,
Units(u16),
}