pub struct InputResponse {
pub response: Response,
pub text: String,
pub changed: bool,
}Expand description
Response from the input field
Fields§
§response: ResponseThe UI response
text: StringCurrent text value
changed: boolWhether text changed this frame
Trait Implementations§
Source§impl Clone for InputResponse
impl Clone for InputResponse
Source§fn clone(&self) -> InputResponse
fn clone(&self) -> InputResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for InputResponse
impl !RefUnwindSafe for InputResponse
impl Send for InputResponse
impl Sync for InputResponse
impl Unpin for InputResponse
impl UnsafeUnpin for InputResponse
impl !UnwindSafe for InputResponse
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