pub trait FocusModeHint { fn focus_modes(&self) -> &[&'static str]; } impl FocusModeHint for super::FocusManager { fn focus_modes(&self) -> &[&'static str] { &["general"] } }