ZIm/crates/ui2/src/fixed.rs
Marshall Bowers 3e2c517dd1
Add Disableable trait (#3439)
This PR adds a new `Disableable` trait to use for elements that are
capable of being disabled.

Release Notes:

- N/A
2023-11-29 13:01:26 -05:00

10 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;
}