Struct azure_devops_rust_api::graph::models::PagedGraphGroups
source · pub struct PagedGraphGroups {
pub continuation_token: Vec<String>,
pub graph_groups: Vec<GraphGroup>,
}Expand description
Fields§
§continuation_token: Vec<String>This will be non-null if there is another page of data. There will never be more than one continuation token returned by a request.
graph_groups: Vec<GraphGroup>The enumerable list of groups found within a page.
Implementations§
Trait Implementations§
source§impl Clone for PagedGraphGroups
impl Clone for PagedGraphGroups
source§fn clone(&self) -> PagedGraphGroups
fn clone(&self) -> PagedGraphGroups
Returns a copy 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 PagedGraphGroups
impl Debug for PagedGraphGroups
source§impl Default for PagedGraphGroups
impl Default for PagedGraphGroups
source§fn default() -> PagedGraphGroups
fn default() -> PagedGraphGroups
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for PagedGraphGroups
impl<'de> Deserialize<'de> for PagedGraphGroups
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<PagedGraphGroups> for PagedGraphGroups
impl PartialEq<PagedGraphGroups> for PagedGraphGroups
source§fn eq(&self, other: &PagedGraphGroups) -> bool
fn eq(&self, other: &PagedGraphGroups) -> bool
This method tests for
self and other values to be equal, and is used
by ==.