pub struct DashboardList {
pub total: u64,
pub dashboards: Vec<DashboardSummary>,
pub truncated: bool,
}Expand description
Dashboard list output after collection, stable-id sorting, and limiting.
Fields§
§total: u64§dashboards: Vec<DashboardSummary>§truncated: boolTrait Implementations§
Source§impl Clone for DashboardList
impl Clone for DashboardList
Source§fn clone(&self) -> DashboardList
fn clone(&self) -> DashboardList
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 DashboardList
impl Debug for DashboardList
Source§impl PartialEq for DashboardList
impl PartialEq for DashboardList
Source§impl Serialize for DashboardList
impl Serialize for DashboardList
impl StructuralPartialEq for DashboardList
Auto Trait Implementations§
impl Freeze for DashboardList
impl RefUnwindSafe for DashboardList
impl Send for DashboardList
impl Sync for DashboardList
impl Unpin for DashboardList
impl UnsafeUnpin for DashboardList
impl UnwindSafe for DashboardList
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