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

/// Rules about widget overflowing.
#[derive(Debug, Clone)]
pub enum Overflow {
    /// Does not hide the widgets out of the layout dimensions.
    Ignore,
    /// Hides the widgets out of the layout dimensions.
    Hide,
}