pub struct FormBuffer<'b, W>{ /* private fields */ }Expand description
Second stage of form rendering.
This can render the widgets that make up the form content.
Implementations§
Source§impl<'b, W> FormBuffer<'b, W>
impl<'b, W> FormBuffer<'b, W>
Sourcepub fn is_visible(&self, widget: W) -> bool
pub fn is_visible(&self, widget: W) -> bool
Is the given area visible?
Sourcepub fn render_label<FN>(&mut self, widget: W, render_fn: FN) -> bool
pub fn render_label<FN>(&mut self, widget: W, render_fn: FN) -> bool
Render a manual label.
Sourcepub fn render_widget<FN, WW>(&mut self, widget: W, render_fn: FN) -> bool
pub fn render_widget<FN, WW>(&mut self, widget: W, render_fn: FN) -> bool
Render a stateless widget and its label, if any.
Sourcepub fn render_opt<FN, WW, SS>(
&mut self,
widget: W,
render_fn: FN,
state: &mut SS,
) -> bool
pub fn render_opt<FN, WW, SS>( &mut self, widget: W, render_fn: FN, state: &mut SS, ) -> bool
Render an optional stateful widget and its label, if any.
Sourcepub fn render<FN, WW, SS>(
&mut self,
widget: W,
render_fn: FN,
state: &mut SS,
) -> bool
pub fn render<FN, WW, SS>( &mut self, widget: W, render_fn: FN, state: &mut SS, ) -> bool
Render a stateful widget and its label, if any.
Sourcepub fn render2<FN, WW, SS, R>(
&mut self,
widget: W,
render_fn: FN,
state: &mut SS,
) -> Option<R>
pub fn render2<FN, WW, SS, R>( &mut self, widget: W, render_fn: FN, state: &mut SS, ) -> Option<R>
Render a stateful widget and its label, if any. The closure can return a second value, which will be returned if the widget is visible.
Sourcepub fn locate_widget(&self, widget: W) -> Option<Rect>
pub fn locate_widget(&self, widget: W) -> Option<Rect>
Get the area for the given widget.
Sourcepub fn locate_label(&self, widget: W) -> Option<Rect>
pub fn locate_label(&self, widget: W) -> Option<Rect>
Get the area for the label of the given widget.
Sourcepub fn locate_area(&self, area: Rect) -> Option<Rect>
pub fn locate_area(&self, area: Rect) -> Option<Rect>
This will clip the area to the page_area.
Trait Implementations§
Auto Trait Implementations§
impl<'b, W> Freeze for FormBuffer<'b, W>
impl<'b, W> RefUnwindSafe for FormBuffer<'b, W>where
W: RefUnwindSafe,
impl<'b, W> !Send for FormBuffer<'b, W>
impl<'b, W> !Sync for FormBuffer<'b, W>
impl<'b, W> Unpin for FormBuffer<'b, W>
impl<'b, W> !UnwindSafe for FormBuffer<'b, W>
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