fixed.rs

1use gpui::DefiniteLength;
2
3pub trait FixedWidth {
4    fn width(self, width: DefiniteLength) -> Self;
5    fn full_width(self) -> Self;
6}