pub struct TextareaResponse {
pub response: Response,
pub text: String,
pub changed: bool,
}Expand description
Response from the textarea
Fields§
§response: ResponseThe UI response
text: StringCurrent text value
changed: boolWhether text changed this frame
Trait Implementations§
Source§impl Clone for TextareaResponse
impl Clone for TextareaResponse
Source§fn clone(&self) -> TextareaResponse
fn clone(&self) -> TextareaResponse
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 TextareaResponse
impl !RefUnwindSafe for TextareaResponse
impl Send for TextareaResponse
impl Sync for TextareaResponse
impl Unpin for TextareaResponse
impl UnsafeUnpin for TextareaResponse
impl !UnwindSafe for TextareaResponse
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