pub trait TextInputProxy: Send + Sync {
// Required methods
fn get(&self) -> String;
fn set(&mut self, value: String);
}
pub trait TextInputProxy: Send + Sync {
// Required methods
fn get(&self) -> String;
fn set(&mut self, value: String);
}