pub struct SearchAllIamPoliciesResponse {
pub next_page_token: Option<String>,
pub results: Option<Vec<IamPolicySearchResult>>,
}Expand description
Search all IAM policies response.
§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).
- search all iam policies (response)
Fields§
§next_page_token: Option<String>Set if there are more results than those appearing in this response; to get the next set of results, call this method again, using this value as the page_token.
results: Option<Vec<IamPolicySearchResult>>A list of IAM policies that match the search query. Related information such as the associated resource is returned along with the policy.
Trait Implementations§
Source§impl Clone for SearchAllIamPoliciesResponse
impl Clone for SearchAllIamPoliciesResponse
Source§fn clone(&self) -> SearchAllIamPoliciesResponse
fn clone(&self) -> SearchAllIamPoliciesResponse
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 SearchAllIamPoliciesResponse
impl Debug for SearchAllIamPoliciesResponse
Source§impl Default for SearchAllIamPoliciesResponse
impl Default for SearchAllIamPoliciesResponse
Source§fn default() -> SearchAllIamPoliciesResponse
fn default() -> SearchAllIamPoliciesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SearchAllIamPoliciesResponse
impl<'de> Deserialize<'de> for SearchAllIamPoliciesResponse
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 ResponseResult for SearchAllIamPoliciesResponse
Auto Trait Implementations§
impl Freeze for SearchAllIamPoliciesResponse
impl RefUnwindSafe for SearchAllIamPoliciesResponse
impl Send for SearchAllIamPoliciesResponse
impl Sync for SearchAllIamPoliciesResponse
impl Unpin for SearchAllIamPoliciesResponse
impl UnwindSafe for SearchAllIamPoliciesResponse
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