#[non_exhaustive]pub struct ListUserCredsRequest {
pub parent: String,
/* private fields */
}Expand description
The request for FirestoreAdmin.ListUserCreds.
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.parent: StringRequired. A parent database name of the form
projects/{project_id}/databases/{database_id}
Implementations§
Trait Implementations§
Source§impl Clone for ListUserCredsRequest
impl Clone for ListUserCredsRequest
Source§fn clone(&self) -> ListUserCredsRequest
fn clone(&self) -> ListUserCredsRequest
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 ListUserCredsRequest
impl Debug for ListUserCredsRequest
Source§impl Default for ListUserCredsRequest
impl Default for ListUserCredsRequest
Source§fn default() -> ListUserCredsRequest
fn default() -> ListUserCredsRequest
Returns the “default value” for a type. Read more
Source§impl Message for ListUserCredsRequest
impl Message for ListUserCredsRequest
Source§impl PartialEq for ListUserCredsRequest
impl PartialEq for ListUserCredsRequest
impl StructuralPartialEq for ListUserCredsRequest
Auto Trait Implementations§
impl Freeze for ListUserCredsRequest
impl RefUnwindSafe for ListUserCredsRequest
impl Send for ListUserCredsRequest
impl Sync for ListUserCredsRequest
impl Unpin for ListUserCredsRequest
impl UnwindSafe for ListUserCredsRequest
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