pub struct TagInputResponse {
pub response: Response,
pub error: Option<String>,
}Expand description
The result of rendering a TagInput.
Fields§
§response: ResponseUnderlying egui Response for the inner text editor — use
.lost_focus(), .has_focus(), etc.
error: Option<String>If a validator rejected the most recent commit attempt, the error
message it returned; otherwise None.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TagInputResponse
impl !RefUnwindSafe for TagInputResponse
impl Send for TagInputResponse
impl Sync for TagInputResponse
impl Unpin for TagInputResponse
impl UnsafeUnpin for TagInputResponse
impl !UnwindSafe for TagInputResponse
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