pub struct RadioGroupResponse {
pub response: Response,
pub changed: bool,
pub selected: Option<String>,
}Expand description
Response from radio group
Fields§
§response: ResponseThe UI response
changed: boolWhether the selection changed
selected: Option<String>The currently selected value (if any)
Auto Trait Implementations§
impl Freeze for RadioGroupResponse
impl !RefUnwindSafe for RadioGroupResponse
impl Send for RadioGroupResponse
impl Sync for RadioGroupResponse
impl Unpin for RadioGroupResponse
impl UnsafeUnpin for RadioGroupResponse
impl !UnwindSafe for RadioGroupResponse
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