pub struct PageOfDashboards {
pub start_at: Option<i32>,
pub max_results: Option<i32>,
pub total: Option<i32>,
pub prev: Option<String>,
pub next: Option<String>,
pub dashboards: Option<Vec<Dashboard>>,
}
Expand description
PageOfDashboards : A page containing dashboard details.
Fields§
§start_at: Option<i32>
The index of the first item returned on the page.
max_results: Option<i32>
The maximum number of results that could be on the page.
total: Option<i32>
The number of results on the page.
prev: Option<String>
The URL of the previous page of results, if any.
next: Option<String>
The URL of the next page of results, if any.
dashboards: Option<Vec<Dashboard>>
List of dashboards.
Implementations§
Source§impl PageOfDashboards
impl PageOfDashboards
Sourcepub fn new() -> PageOfDashboards
pub fn new() -> PageOfDashboards
A page containing dashboard details.
Trait Implementations§
Source§impl Clone for PageOfDashboards
impl Clone for PageOfDashboards
Source§fn clone(&self) -> PageOfDashboards
fn clone(&self) -> PageOfDashboards
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 PageOfDashboards
impl Debug for PageOfDashboards
Source§impl Default for PageOfDashboards
impl Default for PageOfDashboards
Source§fn default() -> PageOfDashboards
fn default() -> PageOfDashboards
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PageOfDashboards
impl<'de> Deserialize<'de> for PageOfDashboards
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
Source§impl PartialEq for PageOfDashboards
impl PartialEq for PageOfDashboards
Source§impl Serialize for PageOfDashboards
impl Serialize for PageOfDashboards
impl StructuralPartialEq for PageOfDashboards
Auto Trait Implementations§
impl Freeze for PageOfDashboards
impl RefUnwindSafe for PageOfDashboards
impl Send for PageOfDashboards
impl Sync for PageOfDashboards
impl Unpin for PageOfDashboards
impl UnwindSafe for PageOfDashboards
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