pub struct Scroll<V> {
pub content: Pod<V>,
pub axis: Axis,
pub transition: Option<Transition>,
pub inset: Option<f32>,
pub width: Option<f32>,
pub border_radius: Option<BorderRadius>,
pub color: Option<Color>,
pub knob_color: Option<Color>,
}
Expand description
A scrollable view.
Fields§
§content: Pod<V>
The content.
axis: Axis
The axis of the scroll.
transition: Option<Transition>
The transition of the scrollbar.
inset: Option<f32>
The inset of the scrollbar.
width: Option<f32>
The width of the scrollbar.
border_radius: Option<BorderRadius>
The radius of the scrollbar.
color: Option<Color>
The color of the scrollbar.
knob_color: Option<Color>
The color of the scrollbar knob.
Implementations§
Source§impl<V> Scroll<V>
impl<V> Scroll<V>
Sourcepub fn transition(self, transition: impl Into<Transition>) -> Scroll<V>
pub fn transition(self, transition: impl Into<Transition>) -> Scroll<V>
Set self.transition
.
The transition of the scrollbar.
Sourcepub fn inset(self, inset: impl Into<f32>) -> Scroll<V>
pub fn inset(self, inset: impl Into<f32>) -> Scroll<V>
Set self.inset
.
The inset of the scrollbar.
Sourcepub fn width(self, width: impl Into<f32>) -> Scroll<V>
pub fn width(self, width: impl Into<f32>) -> Scroll<V>
Set self.width
.
The width of the scrollbar.
Sourcepub fn border_radius(self, border_radius: impl Into<BorderRadius>) -> Scroll<V>
pub fn border_radius(self, border_radius: impl Into<BorderRadius>) -> Scroll<V>
Set self.border_radius
.
The radius of the scrollbar.
Sourcepub fn color(self, color: impl Into<Color>) -> Scroll<V>
pub fn color(self, color: impl Into<Color>) -> Scroll<V>
Set self.color
.
The color of the scrollbar.
Sourcepub fn knob_color(self, knob_color: impl Into<Color>) -> Scroll<V>
pub fn knob_color(self, knob_color: impl Into<Color>) -> Scroll<V>
Set self.knob_color
.
The color of the scrollbar knob.
Trait Implementations§
Source§impl<V> Stylable for Scroll<V>
impl<V> Stylable for Scroll<V>
Source§impl<T, V> View<T> for Scroll<V>where
V: View<T>,
impl<T, V> View<T> for Scroll<V>where
V: View<T>,
Source§type State = (ScrollState, PodState<T, V>)
type State = (ScrollState, PodState<T, V>)
The state of the view, see top-level documentation for more information.
Source§fn build(
&mut self,
cx: &mut BuildCx<'_, '_>,
data: &mut T,
) -> <Scroll<V> as View<T>>::State
fn build( &mut self, cx: &mut BuildCx<'_, '_>, data: &mut T, ) -> <Scroll<V> as View<T>>::State
Build the view state, see top-level documentation for more information.
Source§fn rebuild(
&mut self,
_: &mut <Scroll<V> as View<T>>::State,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &Scroll<V>,
)
fn rebuild( &mut self, _: &mut <Scroll<V> as View<T>>::State, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &Scroll<V>, )
Rebuild the view state, see top-level documentation for more information.
Source§fn event(
&mut self,
_: &mut <Scroll<V> as View<T>>::State,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn event( &mut self, _: &mut <Scroll<V> as View<T>>::State, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool
Handle an event, see top-level documentation for more information.
Auto Trait Implementations§
impl<V> Freeze for Scroll<V>where
V: Freeze,
impl<V> RefUnwindSafe for Scroll<V>where
V: RefUnwindSafe,
impl<V> Send for Scroll<V>where
V: Send,
impl<V> Sync for Scroll<V>where
V: Sync,
impl<V> Unpin for Scroll<V>where
V: Unpin,
impl<V> UnwindSafe for Scroll<V>where
V: UnwindSafe,
Blanket Implementations§
Source§impl<T, V> AnyView<T> for V
impl<T, V> AnyView<T> for V
Source§fn dyn_build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Box<dyn Any>
fn dyn_build(&mut self, cx: &mut BuildCx<'_, '_>, data: &mut T) -> Box<dyn Any>
Build the view.
Source§fn dyn_rebuild(
&mut self,
state: &mut Box<dyn Any>,
cx: &mut RebuildCx<'_, '_>,
data: &mut T,
old: &dyn AnyView<T>,
)
fn dyn_rebuild( &mut self, state: &mut Box<dyn Any>, cx: &mut RebuildCx<'_, '_>, data: &mut T, old: &dyn AnyView<T>, )
Rebuild the view.
Source§fn dyn_event(
&mut self,
state: &mut Box<dyn Any>,
cx: &mut EventCx<'_, '_>,
data: &mut T,
event: &Event,
) -> bool
fn dyn_event( &mut self, state: &mut Box<dyn Any>, cx: &mut EventCx<'_, '_>, data: &mut T, event: &Event, ) -> bool
Handle an event.
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