pub struct Content {
pub filter: Option<String>,
pub sort_type: Option<String>,
pub sort_direction: Option<SortDirection>,
pub smart_collection: Option<Object>,
}Expand description
Represent the content view. Applies to Collection and Folder
Fields§
§filter: Option<String>Filter
sort_type: Option<String>What to sort on
sort_direction: Option<SortDirection>Which direction to sort
smart_collection: Option<Object>Define the smart collection (if any)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Content
impl RefUnwindSafe for Content
impl Send for Content
impl Sync for Content
impl Unpin for Content
impl UnwindSafe for Content
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