pub struct TextBoxResponse {
pub text: Option<String>,
pub activated: bool,
pub lost_focus: bool,
}Fields§
§text: Option<String>§activated: boolWhether the user pressed “Enter” in this box
lost_focus: boolWhether the box lost focus
Auto Trait Implementations§
impl Freeze for TextBoxResponse
impl RefUnwindSafe for TextBoxResponse
impl Send for TextBoxResponse
impl Sync for TextBoxResponse
impl Unpin for TextBoxResponse
impl UnwindSafe for TextBoxResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more