struct LibraryWindowUi {Show 33 fields
ctx: Arc<AppContext>,
app: Application,
window: ApplicationWindow,
nav: NavigationView,
sidebar: SidebarParts,
grid: GridViewParts,
explore: ExploreViewParts,
albums: AlbumsViewParts,
content_stack: Stack,
error_label: Label,
transfer_bar: Box,
transfer_progress: ProgressBar,
transfer_icon: Image,
transfer_label: Label,
search_view: SearchViewParts,
sort_mode: DropDown,
source_mode: DropDown,
source_revealer: Revealer,
upload_button: Button,
timeline_toggle: ToggleButton,
timeline_banner: Label,
source_mode_suppressed: Cell<bool>,
sidebar_suppressed: Cell<bool>,
back_button: Button,
select_toggle: ToggleButton,
bulk_bar: Revealer,
bulk_count_label: Label,
album_link_row: ActionRow,
album_link_button: Button,
album_sync_button: Button,
last_seen_upload_batch: Cell<u64>,
split: OverlaySplitView,
drop_overlay: Revealer,
}Expand description
The complete UI widgets state wrapper for the library window interface.
Fields§
§ctx: Arc<AppContext>§app: Application§window: ApplicationWindow§grid: GridViewParts§explore: ExploreViewParts§albums: AlbumsViewParts§content_stack: Stack§error_label: Label§transfer_bar: Box§transfer_progress: ProgressBar§transfer_icon: Image§transfer_label: Label§search_view: SearchViewParts§sort_mode: DropDown§source_mode: DropDown§source_revealer: Revealer§timeline_toggle: ToggleButton§source_mode_suppressed: Cell<bool>§select_toggle: ToggleButton§bulk_bar: Revealer§bulk_count_label: Label§album_link_row: ActionRow§last_seen_upload_batch: Cell<u64>§split: OverlaySplitView§drop_overlay: RevealerAuto Trait Implementations§
impl !Freeze for LibraryWindowUi
impl !RefUnwindSafe for LibraryWindowUi
impl !Send for LibraryWindowUi
impl !Sync for LibraryWindowUi
impl !UnwindSafe for LibraryWindowUi
impl Unpin for LibraryWindowUi
impl UnsafeUnpin for LibraryWindowUi
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more