Struct rat_widget::viewport::Viewport
source · pub struct Viewport<'a, T> { /* private fields */ }Expand description
Viewport has its own size, and can contain a stateful 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 Viewport<'a, T>where
T: StatefulWidget,
impl<'a, T> StatefulWidget for Viewport<'a, T>where
T: StatefulWidget,
source§type State = ViewportState<<T as StatefulWidget>::State>
type State = ViewportState<<T as StatefulWidget>::State>
State associated with the stateful widget. Read more
Auto Trait Implementations§
impl<'a, T> Freeze for Viewport<'a, T>where
T: Freeze,
impl<'a, T> RefUnwindSafe for Viewport<'a, T>where
T: RefUnwindSafe,
impl<'a, T> Send for Viewport<'a, T>where
T: Send,
impl<'a, T> Sync for Viewport<'a, T>where
T: Sync,
impl<'a, T> Unpin for Viewport<'a, T>where
T: Unpin,
impl<'a, T> UnwindSafe for Viewport<'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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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