pub struct GetItemsOptions {
pub start_index: Option<usize>,
pub limit: Option<usize>,
pub sort_by: Option<String>,
pub sort_order: Option<String>,
pub include_item_types: Option<Vec<String>>,
pub recursive: Option<bool>,
pub fields: Option<Vec<String>>,
pub genres: Option<Vec<String>>,
pub favorites_only: Option<bool>,
pub parent_kind: Option<MediaKind>,
}Expand description
Options for querying items
Fields§
§start_index: Option<usize>§limit: Option<usize>§sort_by: Option<String>§sort_order: Option<String>§include_item_types: Option<Vec<String>>§recursive: Option<bool>§fields: Option<Vec<String>>§genres: Option<Vec<String>>§favorites_only: Option<bool>Restrict the listing to favourited items. Backs the per-library favourites toggle; composes with every other filter here.
TRACES: UR-067 | DR-116 | UT-104
parent_kind: Option<MediaKind>What the container being listed is, so the repository can pick the
order its children belong in when the caller names none. The frontend
sends the neutral kind it already holds; what that kind implies about
ordering is decided here, the same division as SearchScope.
TRACES: UR-007 | DR-257
Trait Implementations§
Source§impl Clone for GetItemsOptions
impl Clone for GetItemsOptions
Source§fn clone(&self) -> GetItemsOptions
fn clone(&self) -> GetItemsOptions
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 GetItemsOptions
impl Debug for GetItemsOptions
Source§impl Default for GetItemsOptions
impl Default for GetItemsOptions
Source§fn default() -> GetItemsOptions
fn default() -> GetItemsOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetItemsOptions
impl<'de> Deserialize<'de> for GetItemsOptions
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl NamedType for GetItemsOptions
impl NamedType for GetItemsOptions
fn sid() -> SpectaID
Source§fn named_data_type(
type_map: &mut TypeCollection,
generics: &[DataType],
) -> NamedDataType
fn named_data_type( type_map: &mut TypeCollection, generics: &[DataType], ) -> NamedDataType
this is equivalent to [Type::inline] but returns a [NamedDataType] instead.
Source§fn definition_named_data_type(type_map: &mut TypeCollection) -> NamedDataType
fn definition_named_data_type(type_map: &mut TypeCollection) -> NamedDataType
this is equivalent to [Type::definition] but returns a [NamedDataType] instead.
Source§impl Serialize for GetItemsOptions
impl Serialize for GetItemsOptions
Source§impl Type for GetItemsOptions
impl Type for GetItemsOptions
Source§fn inline(type_map: &mut TypeCollection, generics: Generics<'_>) -> DataType
fn inline(type_map: &mut TypeCollection, generics: Generics<'_>) -> DataType
Returns the definition of a type using the provided generics. Read more
Source§fn reference(type_map: &mut TypeCollection, generics: &[DataType]) -> Reference
fn reference(type_map: &mut TypeCollection, generics: &[DataType]) -> Reference
Generates a datatype corresponding to a reference to this type,
as determined by its category. Getting a reference to a type implies that
it should belong in the type map (since it has to be referenced from somewhere),
so the output of
definition will be put into the type map.impl Flatten for GetItemsOptions
Auto Trait Implementations§
impl Freeze for GetItemsOptions
impl RefUnwindSafe for GetItemsOptions
impl Send for GetItemsOptions
impl Sync for GetItemsOptions
impl Unpin for GetItemsOptions
impl UnsafeUnpin for GetItemsOptions
impl UnwindSafe for GetItemsOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<'de, D, R> CommandArg<'de, R> for Dwhere
D: Deserialize<'de>,
R: Runtime,
impl<'de, D, R> CommandArg<'de, R> for Dwhere
D: Deserialize<'de>,
R: Runtime,
§fn from_command(command: CommandItem<'de, R>) -> Result<D, InvokeError>
fn from_command(command: CommandItem<'de, R>) -> Result<D, InvokeError>
§impl<T> FunctionArg for Twhere
T: Type,
impl<T> FunctionArg for Twhere
T: Type,
§fn to_datatype(type_map: &mut TypeCollection) -> Option<DataType>
fn to_datatype(type_map: &mut TypeCollection) -> Option<DataType>
Gets the type of an argument as a [
DataType]. Read more§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>
§impl<T> NoneValue for Twhere
T: Default,
impl<T> NoneValue for Twhere
T: Default,
type NoneType = T
§fn null_value() -> T
fn null_value() -> T
The none-equivalent value.