iced-yoda/native/src/widget/state.rs

6 lines
110 B
Rust
Raw Normal View History

2022-07-28 02:46:51 +02:00
pub trait Focusable {
fn is_focused(&self) -> bool;
fn focus(&mut self);
fn unfocus(&mut self);
}