pub enum LibrarySource {
Show 14 variants
AllAssets,
Timeline,
Explore,
Album {
id: String,
name: String,
},
SmartSearch {
query: String,
},
MetadataSearch {
query: String,
},
OcrSearch {
query: String,
},
AdvancedSearch {
filters: Box<MetadataSearchFilters>,
},
LocalAll,
LocalSearch {
query: String,
},
Unified,
UnifiedSearch {
query: String,
},
AlbumLocal {
id: String,
name: String,
},
AlbumUnified {
id: String,
name: String,
},
}Variants§
AllAssets
Timeline
Explore
Random sample via POST /api/search/random. Used as the “Explore”
sidebar destination — refresh re-rolls; pagination is meaningless.
Album
SmartSearch
MetadataSearch
OcrSearch
AdvancedSearch
Fields
§
filters: Box<MetadataSearchFilters>LocalAll
Local watched-folder enumeration only (no remote calls).
LocalSearch
Filename substring filter applied over the local enumeration.
Unified
Remote assets overlayed with sync state from local SyncIndex.
UnifiedSearch
Local filename filter applied over a unified view.
AlbumLocal
Local enumeration scoped to the folder linked to a specific album. Empty if the album has no linked folder.
AlbumUnified
Remote album assets overlayed with sync state from the linked folder.
Implementations§
Trait Implementations§
Source§impl Clone for LibrarySource
impl Clone for LibrarySource
Source§fn clone(&self) -> LibrarySource
fn clone(&self) -> LibrarySource
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LibrarySource
impl Debug for LibrarySource
impl Eq for LibrarySource
Source§impl PartialEq for LibrarySource
impl PartialEq for LibrarySource
Source§fn eq(&self, other: &LibrarySource) -> bool
fn eq(&self, other: &LibrarySource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LibrarySource
Auto Trait Implementations§
impl Freeze for LibrarySource
impl RefUnwindSafe for LibrarySource
impl Send for LibrarySource
impl Sync for LibrarySource
impl Unpin for LibrarySource
impl UnsafeUnpin for LibrarySource
impl UnwindSafe for LibrarySource
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§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