FormBuffer

Struct FormBuffer 

Source
pub struct FormBuffer<'b, W>
where W: Eq + Hash + Clone,
{ /* 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>
where W: Eq + Hash + Clone,

Source

pub fn is_visible(&self, widget: W) -> bool

Is the given area visible?

Source

pub fn render_label<FN>(&mut self, widget: W, render_fn: FN) -> bool
where FN: FnOnce(&Cow<'static, str>, Rect, &mut Buffer),

Render a manual label.

Source

pub fn render_widget<FN, WW>(&mut self, widget: W, render_fn: FN) -> bool
where FN: FnOnce() -> WW, WW: Widget,

Render a stateless widget and its label, if any.

Source

pub fn render_opt<FN, WW, SS>( &mut self, widget: W, render_fn: FN, state: &mut SS, ) -> bool
where FN: FnOnce() -> Option<WW>, WW: StatefulWidget<State = SS>, SS: RelocatableState,

Render an optional stateful widget and its label, if any.

Source

pub fn render<FN, WW, SS>( &mut self, widget: W, render_fn: FN, state: &mut SS, ) -> bool
where FN: FnOnce() -> WW, WW: StatefulWidget<State = SS>, SS: RelocatableState,

Render a stateful widget and its label, if any.

Source

pub fn render2<FN, WW, SS, R>( &mut self, widget: W, render_fn: FN, state: &mut SS, ) -> Option<R>
where FN: FnOnce() -> (WW, R), WW: StatefulWidget<State = SS>, SS: RelocatableState,

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.

Source

pub fn buffer(&mut self) -> &mut Buffer

Get access to the buffer during rendering a page.

Source

pub fn locate_widget(&self, widget: W) -> Option<Rect>

Get the area for the given widget.

Source

pub fn locate_label(&self, widget: W) -> Option<Rect>

Get the area for the label of the given widget.

Source

pub fn locate_area(&self, area: Rect) -> Option<Rect>

This will clip the area to the page_area.

Trait Implementations§

Source§

impl<'b, W> Debug for FormBuffer<'b, W>
where W: Eq + Hash + Clone + Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.