iced_aw 0.14.0

Additional widgets for the Iced GUI library
Documentation
//! Alignment enum, similar to an anchor

/// ```text
/// +-----------+-----------+-----------+
/// | TopStart  |   Top     |  TopEnd   |
/// +-----------+-----------+-----------+
/// |  Start    |           |   End     |
/// +-----------+-----------+-----------+
/// |BottomStart|  Bottom   | BottomEnd |
/// +-----------+-----------+-----------+
/// ```
#[allow(missing_docs)]
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Alignment {
    TopStart,
    Top,
    TopEnd,

    End,

    BottomEnd,
    Bottom,
    BottomStart,

    Start,
}