ux-components 0.1.3

Backend agnostic GUI framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use super::ShapeBorder;

pub trait BoxBorder: ShapeBorder {
    // The bottom side of this border.
    // bottom: BorderSide
    
    // Whether all four sides of the border are identical. Uniform borders are typically more efficient to paint.
    // isUniform: bool
    
    // The top side of this border.
    // top: BorderSide
}