Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1/// A trait for elements that can be disabled. 2pub trait Disableable { 3 /// Sets whether the element is disabled. 4 fn disabled(self, disabled: bool) -> Self; 5}