Struct rat_widget::scrolled::ScrollArea
source · pub struct ScrollArea<'a>(pub Rect, pub Option<&'a mut ScrollState>, pub Option<&'a mut ScrollState>);Expand description
Handle scroll events for the given area and the (possibly) two scrollbars.
Tuple Fields§
§0: Rect§1: Option<&'a mut ScrollState>§2: Option<&'a mut ScrollState>Trait Implementations§
source§impl<'a> Debug for ScrollArea<'a>
impl<'a> Debug for ScrollArea<'a>
source§impl<'a> HandleEvent<Event, MouseOnly, ScrollOutcome> for ScrollArea<'a>
impl<'a> HandleEvent<Event, MouseOnly, ScrollOutcome> for ScrollArea<'a>
Handle scrolling for the whole area spanned by the two scroll-states.
Auto Trait Implementations§
impl<'a> Freeze for ScrollArea<'a>
impl<'a> !RefUnwindSafe for ScrollArea<'a>
impl<'a> Send for ScrollArea<'a>
impl<'a> !Sync for ScrollArea<'a>
impl<'a> Unpin for ScrollArea<'a>
impl<'a> !UnwindSafe for ScrollArea<'a>
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