pub struct DataViewList {
pub total: usize,
pub data_views: Vec<DataViewSummary>,
}Expand description
Data-view list output after local filtering and stable-id sorting.
Fields§
§total: usize§data_views: Vec<DataViewSummary>Trait Implementations§
Source§impl Clone for DataViewList
impl Clone for DataViewList
Source§fn clone(&self) -> DataViewList
fn clone(&self) -> DataViewList
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 DataViewList
impl Debug for DataViewList
Source§impl PartialEq for DataViewList
impl PartialEq for DataViewList
Source§impl Serialize for DataViewList
impl Serialize for DataViewList
impl StructuralPartialEq for DataViewList
Auto Trait Implementations§
impl Freeze for DataViewList
impl RefUnwindSafe for DataViewList
impl Send for DataViewList
impl Sync for DataViewList
impl Unpin for DataViewList
impl UnsafeUnpin for DataViewList
impl UnwindSafe for DataViewList
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