#[non_exhaustive]pub struct ListIdentityMappingsRequest {
pub identity_mapping_store: String,
pub page_size: i32,
pub page_token: String,
/* private fields */
}Available on crate feature
identity-mapping-store-service only.Expand description
Request message for IdentityMappingStoreService.ListIdentityMappings
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.identity_mapping_store: StringRequired. The name of the Identity Mapping Store to list Identity Mapping
Entries in. Format:
projects/{project}/locations/{location}/identityMappingStores/{identityMappingStore}
page_size: i32Maximum number of IdentityMappings to return. If unspecified, defaults to 2000. The maximum allowed value is 10000. Values above 10000 will be coerced to 10000.
page_token: StringA page token, received from a previous ListIdentityMappings call.
Provide this to retrieve the subsequent page.
When paginating, all other parameters provided to
ListIdentityMappings must match the call that provided the page
token.
Implementations§
Source§impl ListIdentityMappingsRequest
impl ListIdentityMappingsRequest
pub fn new() -> Self
Sourcepub fn set_identity_mapping_store<T: Into<String>>(self, v: T) -> Self
pub fn set_identity_mapping_store<T: Into<String>>(self, v: T) -> Self
Sets the value of identity_mapping_store.
§Example
ⓘ
let x = ListIdentityMappingsRequest::new().set_identity_mapping_store("example");Sourcepub fn set_page_size<T: Into<i32>>(self, v: T) -> Self
pub fn set_page_size<T: Into<i32>>(self, v: T) -> Self
Sourcepub fn set_page_token<T: Into<String>>(self, v: T) -> Self
pub fn set_page_token<T: Into<String>>(self, v: T) -> Self
Sets the value of page_token.
§Example
ⓘ
let x = ListIdentityMappingsRequest::new().set_page_token("example");Trait Implementations§
Source§impl Clone for ListIdentityMappingsRequest
impl Clone for ListIdentityMappingsRequest
Source§fn clone(&self) -> ListIdentityMappingsRequest
fn clone(&self) -> ListIdentityMappingsRequest
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 ListIdentityMappingsRequest
impl Debug for ListIdentityMappingsRequest
Source§impl Default for ListIdentityMappingsRequest
impl Default for ListIdentityMappingsRequest
Source§fn default() -> ListIdentityMappingsRequest
fn default() -> ListIdentityMappingsRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for ListIdentityMappingsRequest
Auto Trait Implementations§
impl Freeze for ListIdentityMappingsRequest
impl RefUnwindSafe for ListIdentityMappingsRequest
impl Send for ListIdentityMappingsRequest
impl Sync for ListIdentityMappingsRequest
impl Unpin for ListIdentityMappingsRequest
impl UnwindSafe for ListIdentityMappingsRequest
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