Struct freya_components::ScrollBarProps
source · pub struct ScrollBarProps<'a> { /* private fields */ }
Implementations§
source§impl<'a> ScrollBarProps<'a>
impl<'a> ScrollBarProps<'a>
sourcepub fn builder() -> ScrollBarPropsBuilder<'a, ((), (), (), (), (), ())>
pub fn builder() -> ScrollBarPropsBuilder<'a, ((), (), (), (), (), ())>
Create a builder for building ScrollBarProps
.
On the builder, call .children(...)
(optional), .width(...)
, .height(...)
, .offset_x(...)
(optional), .offset_y(...)
(optional), .clicking_scrollbar(...)
to set the values of the fields.
Finally, call .build()
to create the instance of ScrollBarProps
.
Trait Implementations§
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for ScrollBarProps<'a>
impl<'a> !Send for ScrollBarProps<'a>
impl<'a> !Sync for ScrollBarProps<'a>
impl<'a> Unpin for ScrollBarProps<'a>
impl<'a> !UnwindSafe for ScrollBarProps<'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