haussmann 0.0.3

Integrate highly customisable widgets and themes for any Rust application or GUI library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// This file is part of "haussmann"
// Under the MIT License
// Copyright (c) 2023 Antonin Hérault

/// Direction rule for a [`Layout`](crate::widgets::Layout).
#[derive(Debug, Clone, Eq, PartialEq)]
pub enum Direction {
    /// The items are placed in row.
    Row,
    /// The items are placed in column.
    Column,
}