usegpui::DefiniteLength;/// A trait for elements that can have a fixed with. Enables the use of the `width` and `full_width` methods.
pubtraitFixedWidth{/// Sets the width of the element.
fnwidth(self, width: impl Into<DefiniteLength>)->Self;/// Sets the element's width to the full width of its container.
fnfull_width(self)->Self;}