pub struct GroupAssetsResponse {
pub group_by_results: Option<Vec<GroupResult>>,
pub next_page_token: Option<String>,
pub read_time: Option<DateTime<Utc>>,
pub total_size: Option<i32>,
}Expand description
Response message for grouping by assets.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- assets group folders (response)
- assets group organizations (response)
- assets group projects (response)
Fields§
§group_by_results: Option<Vec<GroupResult>>Group results. There exists an element for each existing unique combination of property/values. The element contains a count for the number of times those specific property/values appear.
next_page_token: Option<String>Token to retrieve the next page of results, or empty if there are no more results.
read_time: Option<DateTime<Utc>>Time used for executing the groupBy request.
total_size: Option<i32>The total number of results matching the query.
Trait Implementations§
Source§impl Clone for GroupAssetsResponse
impl Clone for GroupAssetsResponse
Source§fn clone(&self) -> GroupAssetsResponse
fn clone(&self) -> GroupAssetsResponse
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 GroupAssetsResponse
impl Debug for GroupAssetsResponse
Source§impl Default for GroupAssetsResponse
impl Default for GroupAssetsResponse
Source§fn default() -> GroupAssetsResponse
fn default() -> GroupAssetsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GroupAssetsResponse
impl<'de> Deserialize<'de> for GroupAssetsResponse
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 Serialize for GroupAssetsResponse
impl Serialize for GroupAssetsResponse
impl ResponseResult for GroupAssetsResponse
Auto Trait Implementations§
impl Freeze for GroupAssetsResponse
impl RefUnwindSafe for GroupAssetsResponse
impl Send for GroupAssetsResponse
impl Sync for GroupAssetsResponse
impl Unpin for GroupAssetsResponse
impl UnwindSafe for GroupAssetsResponse
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