pub struct ListProfilingGroupsResponse {
pub next_token: Option<String>,
pub profiling_group_names: Vec<String>,
pub profiling_groups: Option<Vec<ProfilingGroupDescription>>,
}Expand description
The structure representing the listProfilingGroupsResponse.
Fields§
§next_token: Option<String>The nextToken value to include in a future ListProfilingGroups request. When the results of a ListProfilingGroups request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.
profiling_group_names: Vec<String> A returned list of profiling group names. A list of the names is returned only if includeDescription is false, otherwise a list of ProfilingGroupDescription objects is returned.
profiling_groups: Option<Vec<ProfilingGroupDescription>> A returned list ProfilingGroupDescription objects. A list of ProfilingGroupDescription objects is returned only if includeDescription is true, otherwise a list of profiling group names is returned.
Trait Implementations§
Source§impl Clone for ListProfilingGroupsResponse
impl Clone for ListProfilingGroupsResponse
Source§fn clone(&self) -> ListProfilingGroupsResponse
fn clone(&self) -> ListProfilingGroupsResponse
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 ListProfilingGroupsResponse
impl Debug for ListProfilingGroupsResponse
Source§impl Default for ListProfilingGroupsResponse
impl Default for ListProfilingGroupsResponse
Source§fn default() -> ListProfilingGroupsResponse
fn default() -> ListProfilingGroupsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListProfilingGroupsResponse
impl<'de> Deserialize<'de> for ListProfilingGroupsResponse
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
impl StructuralPartialEq for ListProfilingGroupsResponse
Auto Trait Implementations§
impl Freeze for ListProfilingGroupsResponse
impl RefUnwindSafe for ListProfilingGroupsResponse
impl Send for ListProfilingGroupsResponse
impl Sync for ListProfilingGroupsResponse
impl Unpin for ListProfilingGroupsResponse
impl UnwindSafe for ListProfilingGroupsResponse
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