Struct libbismuth::builders::AlbumPageBuilder
source · pub struct AlbumPageBuilder { /* private fields */ }
Expand description
A builder-pattern type to construct AlbumPage
objects.
Implementations§
source§impl AlbumPageBuilder
impl AlbumPageBuilder
sourcepub fn child(self, child: &impl IsA<Widget>) -> Self
pub fn child(self, child: &impl IsA<Widget>) -> Self
The album child to which the page belongs.
Whether the child can be navigated to when folded.
If FALSE
, the child will be ignored by
Album::adjacent_child()
, Album::navigate()
, and swipe
gestures.
This can be used used to prevent switching to widgets like separators.
Auto Trait Implementations§
impl Freeze for AlbumPageBuilder
impl RefUnwindSafe for AlbumPageBuilder
impl !Send for AlbumPageBuilder
impl !Sync for AlbumPageBuilder
impl Unpin for AlbumPageBuilder
impl UnwindSafe for AlbumPageBuilder
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