pub struct ExplorerView {
pub page_size: Option<i32>,
pub order: Option<String>,
pub order_direction: Option<OrderDirection>,
pub view: Option<ExplorerViewMode>,
pub thumbnail: Option<bool>,
pub gallery_width: Option<i32>,
pub columns: Option<Vec<ListViewColumn>>,
}Fields§
§page_size: Option<i32>§order: Option<String>§order_direction: Option<OrderDirection>§view: Option<ExplorerViewMode>§thumbnail: Option<bool>§gallery_width: Option<i32>§columns: Option<Vec<ListViewColumn>>Trait Implementations§
Source§impl Clone for ExplorerView
impl Clone for ExplorerView
Source§fn clone(&self) -> ExplorerView
fn clone(&self) -> ExplorerView
Returns a duplicate of the value. Read more
1.0.0 · 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 ExplorerView
impl Debug for ExplorerView
Source§impl<'de> Deserialize<'de> for ExplorerView
impl<'de> Deserialize<'de> for ExplorerView
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 ExplorerView
impl RefUnwindSafe for ExplorerView
impl Send for ExplorerView
impl Sync for ExplorerView
impl Unpin for ExplorerView
impl UnwindSafe for ExplorerView
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