pub struct PopoverResponse {
pub response: Response,
pub clicked_outside: bool,
pub should_close: bool,
}Expand description
Response from showing a popover
Fields§
§response: ResponseThe UI response
clicked_outside: boolWhether the user clicked outside the popover
should_close: boolWhether the popover should be closed (for external state management)
Auto Trait Implementations§
impl Freeze for PopoverResponse
impl !RefUnwindSafe for PopoverResponse
impl Send for PopoverResponse
impl Sync for PopoverResponse
impl Unpin for PopoverResponse
impl UnsafeUnpin for PopoverResponse
impl !UnwindSafe for PopoverResponse
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