ClipperBuffer

Struct ClipperBuffer 

Source
pub struct ClipperBuffer<'a, W>
where W: Eq + Clone + Hash,
{ /* private fields */ }
Expand description

Second stage: render widgets to the temporary buffer.

Implementations§

Source§

impl<'a, W> ClipperBuffer<'a, W>
where W: Eq + Hash + Clone,

Source

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

Is the widget visible.

Source

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

Render the label for the given widget.

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.

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.

Source

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

Get the buffer coordinates for the given widget.

Source

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

Get the buffer coordinates for the label of the given widget.

Source

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

Relocate the area from layout coordinates to buffer coordinates, which is a noop as those are aligned.

But this will return None if the given area is outside the buffer.

Source

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

Return a reference to the buffer.

Source

pub fn finish(self, buffer: &mut Buffer, state: &mut ClipperState<W>)

Trait Implementations§

Source§

impl<'a, W> Debug for ClipperBuffer<'a, W>
where W: Eq + Clone + Hash + Debug,

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<'a, W> Drop for ClipperBuffer<'a, W>
where W: Eq + Hash + Clone,

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more

Auto Trait Implementations§

§

impl<'a, W> Freeze for ClipperBuffer<'a, W>

§

impl<'a, W> !RefUnwindSafe for ClipperBuffer<'a, W>

§

impl<'a, W> !Send for ClipperBuffer<'a, W>

§

impl<'a, W> !Sync for ClipperBuffer<'a, W>

§

impl<'a, W> Unpin for ClipperBuffer<'a, W>

§

impl<'a, W> !UnwindSafe for ClipperBuffer<'a, 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.