iced/core/src/length.rs
Héctor Ramón Jiménez 5e28f80af8 Improve documentation
2019-09-24 15:15:34 +02:00

7 lines
170 B
Rust

/// The strategy used to fill space in a specific dimension.
#[derive(Debug, Clone, Copy, Eq, PartialEq, Hash)]
pub enum Length {
Fill,
Shrink,
Units(u16),
}