Files
oak-gpui/crates/ui/src/fixed.rs
T
2024-01-03 12:33:51 -08:00

11 lines
294 B
Rust

use gpui::DefiniteLength;
/// A trait for elements that have a fixed with.
pub trait FixedWidth {
/// Sets the width of the element.
fn width(self, width: DefiniteLength) -> Self;
/// Sets the element's width to the full width of its container.
fn full_width(self) -> Self;
}