Struct freya::components::ScrollBarProps
pub struct ScrollBarProps<'a> { /* private fields */ }
Implementations§
§impl<'a> ScrollBarProps<'a>
impl<'a> ScrollBarProps<'a>
pub 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) to set the values of the fields.
Finally, call .build()
to create the instance of ScrollBarProps
.
Trait Implementations§
§impl<'a> Properties for ScrollBarProps<'a>
impl<'a> Properties for ScrollBarProps<'a>
§type Builder = ScrollBarPropsBuilder<'a, ((), (), (), (), ())>
type Builder = ScrollBarPropsBuilder<'a, ((), (), (), (), ())>
The type of the builder for this component.
Used to create “in-progress” versions of the props.
§fn builder() -> <ScrollBarProps<'a> as Properties>::Builder
fn builder() -> <ScrollBarProps<'a> as Properties>::Builder
Create a builder for this component.
§unsafe fn memoize(&self, other: &ScrollBarProps<'a>) -> bool
unsafe fn memoize(&self, other: &ScrollBarProps<'a>) -> bool
Memoization can only happen if the props are valid for the ’static lifetime Read more
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