pub struct SlideContainerProps<'a, S: Slidable + Clone> { /* private fields */ }Implementations§
Source§impl<'a, S: Slidable + Clone> SlideContainerProps<'a, S>
impl<'a, S: Slidable + Clone> SlideContainerProps<'a, S>
Sourcepub fn builder() -> SlideContainerPropsBuilder<'a, ((), (), (), (), (), (), ()), S>
pub fn builder() -> SlideContainerPropsBuilder<'a, ((), (), (), (), (), (), ()), S>
Create a builder for building SlideContainerProps.
On the builder, call .phantom(...)(optional), .width(...)(optional), .height(...)(optional), .background_colour(...)(optional), .show_slide_no(...)(optional), .show_slide_progress_bar(...)(optional), .enable_keyboard_navigation(...)(optional) to set the values of the fields.
Finally, call .build() to create the instance of SlideContainerProps.
Trait Implementations§
Auto Trait Implementations§
impl<'a, S> Freeze for SlideContainerProps<'a, S>
impl<'a, S> RefUnwindSafe for SlideContainerProps<'a, S>where
S: RefUnwindSafe,
impl<'a, S> Send for SlideContainerProps<'a, S>where
S: Send,
impl<'a, S> Sync for SlideContainerProps<'a, S>where
S: Sync,
impl<'a, S> Unpin for SlideContainerProps<'a, S>where
S: Unpin,
impl<'a, S> UnwindSafe for SlideContainerProps<'a, S>where
S: UnwindSafe,
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