pub struct AddProcModal { /* private fields */ }Implementations§
Source§impl AddProcModal
impl AddProcModal
Trait Implementations§
Source§impl Modal for AddProcModal
impl Modal for AddProcModal
fn handle_input( &mut self, _state: &mut State, loop_action: &mut LoopAction, event: &TermEvent, ) -> bool
fn get_size(&mut self, _: Rect) -> (u16, u16)
fn render(&mut self, grid: &mut Grid)
fn boxed(self) -> Box<dyn Modal>where
Self: Sized + 'static,
fn area(&mut self, frame_area: Rect) -> Rect
Auto Trait Implementations§
impl Freeze for AddProcModal
impl RefUnwindSafe for AddProcModal
impl Send for AddProcModal
impl Sync for AddProcModal
impl Unpin for AddProcModal
impl UnsafeUnpin for AddProcModal
impl UnwindSafe for AddProcModal
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> 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