Struct rat_widget::scrolled::view::View
source · pub struct View<'a, T> { /* private fields */ }Expand description
View has its own size, and can contain a stateless widget that will be rendered to a view sized buffer. This buffer is then offset and written to the actual frame buffer.
Implementations§
Trait Implementations§
source§impl<'a, T> StatefulWidget for View<'a, T>where
T: Widget,
impl<'a, T> StatefulWidget for View<'a, T>where
T: Widget,
source§impl<'a, T> StatefulWidgetRef for View<'a, T>where
T: WidgetRef,
impl<'a, T> StatefulWidgetRef for View<'a, T>where
T: WidgetRef,
source§fn render_ref(
&self,
area: Rect,
buf: &mut Buffer,
state: &mut <View<'a, T> as StatefulWidgetRef>::State,
)
fn render_ref( &self, area: Rect, buf: &mut Buffer, state: &mut <View<'a, T> as StatefulWidgetRef>::State, )
Draws the current state of the widget in the given buffer. That is the only method required
to implement a custom stateful widget.
Auto Trait Implementations§
impl<'a, T> Freeze for View<'a, T>where
T: Freeze,
impl<'a, T> RefUnwindSafe for View<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for View<'a, T>where
T: Send,
impl<'a, T> Sync for View<'a, T>where
T: Sync,
impl<'a, T> Unpin for View<'a, T>where
T: Unpin,
impl<'a, T> UnwindSafe for View<'a, T>where
T: UnwindSafe,
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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