pub struct GetLibraryContentRequest {
pub limit: usize,
pub offset: usize,
pub source: MediaLibrarySource,
pub sort_column: Option<SortColumn>,
pub sort_direction: Option<SortDirection>,
pub include_file_metadata: Option<bool>,
}Fields§
§limit: usize§offset: usize§source: MediaLibrarySource§sort_column: Option<SortColumn>§sort_direction: Option<SortDirection>§include_file_metadata: Option<bool>Trait Implementations§
Source§impl Clone for GetLibraryContentRequest
impl Clone for GetLibraryContentRequest
Source§fn clone(&self) -> GetLibraryContentRequest
fn clone(&self) -> GetLibraryContentRequest
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 GetLibraryContentRequest
impl Debug for GetLibraryContentRequest
Source§impl Default for GetLibraryContentRequest
impl Default for GetLibraryContentRequest
Source§fn default() -> GetLibraryContentRequest
fn default() -> GetLibraryContentRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetLibraryContentRequest
impl<'de> Deserialize<'de> for GetLibraryContentRequest
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
Auto Trait Implementations§
impl Freeze for GetLibraryContentRequest
impl RefUnwindSafe for GetLibraryContentRequest
impl Send for GetLibraryContentRequest
impl Sync for GetLibraryContentRequest
impl Unpin for GetLibraryContentRequest
impl UnsafeUnpin for GetLibraryContentRequest
impl UnwindSafe for GetLibraryContentRequest
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