pub struct ModalProps<'a, A> {
pub is_open: bool,
pub is_focused: bool,
pub area: Rect,
pub style: ModalStyle,
pub behavior: ModalBehavior,
pub on_close: fn() -> A,
pub render_content: &'a mut dyn FnMut(&mut Frame<'_>, Rect),
}Expand description
Props for Modal component
Fields§
§is_open: boolWhether the modal is open
is_focused: boolWhether this component has focus
area: RectModal area to render in
style: ModalStyleUnified styling
behavior: ModalBehaviorBehavior configuration
on_close: fn() -> ACallback when the modal should close
render_content: &'a mut dyn FnMut(&mut Frame<'_>, Rect)Render modal content into the inner area
Auto Trait Implementations§
impl<'a, A> Freeze for ModalProps<'a, A>
impl<'a, A> !RefUnwindSafe for ModalProps<'a, A>
impl<'a, A> !Send for ModalProps<'a, A>
impl<'a, A> !Sync for ModalProps<'a, A>
impl<'a, A> Unpin for ModalProps<'a, A>
impl<'a, A> !UnwindSafe for ModalProps<'a, A>
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more