Struct freya::components::ScrollBarProps  
source · pub struct ScrollBarProps<'a> {
    pub theme: Option<ScrollBarThemeWith>,
    pub children: Option<VNode<'a>>,
    pub width: String,
    pub height: String,
    pub clicking_scrollbar: bool,
}Fields§
§theme: Option<ScrollBarThemeWith>Theme override.
children: Option<VNode<'a>>§width: String§height: String§clicking_scrollbar: boolImplementations§
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 .theme(...)(optional), .children(...)(optional), .width(...), .height(...), .clicking_scrollbar(...) to set the values of the fields.
Finally, call .build() to create the instance of ScrollBarProps.
Trait Implementations§
source§impl<'a> Properties for ScrollBarProps<'a>
 
impl<'a> Properties for ScrollBarProps<'a>
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