pub struct ListProfilesResponse {
pub next_page_token: Option<String>,
pub profiles: Option<Vec<Profile>>,
pub skipped_profiles: Option<i32>,
}Expand description
ListProfileResponse contains the list of collected profiles for deployments in projects which the user has permissions to view.
§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).
- profiles list projects (response)
Fields§
§next_page_token: Option<String>Token to receive the next page of results. This field maybe empty if there are no more profiles to fetch.
profiles: Option<Vec<Profile>>List of profiles fetched.
skipped_profiles: Option<i32>Number of profiles that were skipped in the current page since they were not able to be fetched successfully. This should typically be zero. A non-zero value may indicate a transient failure, in which case if the number is too high for your use case, the call may be retried.
Trait Implementations§
Source§impl Clone for ListProfilesResponse
impl Clone for ListProfilesResponse
Source§fn clone(&self) -> ListProfilesResponse
fn clone(&self) -> ListProfilesResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ListProfilesResponse
impl Debug for ListProfilesResponse
Source§impl Default for ListProfilesResponse
impl Default for ListProfilesResponse
Source§fn default() -> ListProfilesResponse
fn default() -> ListProfilesResponse
Source§impl<'de> Deserialize<'de> for ListProfilesResponse
impl<'de> Deserialize<'de> for ListProfilesResponse
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>,
Source§impl Serialize for ListProfilesResponse
impl Serialize for ListProfilesResponse
impl ResponseResult for ListProfilesResponse
Auto Trait Implementations§
impl Freeze for ListProfilesResponse
impl RefUnwindSafe for ListProfilesResponse
impl Send for ListProfilesResponse
impl Sync for ListProfilesResponse
impl Unpin for ListProfilesResponse
impl UnwindSafe for ListProfilesResponse
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more