#[non_exhaustive]pub struct ResetAdminPasswordRequest {
pub name: String,
/* private fields */
}Expand description
Request message for [ResetAdminPassword][google.cloud.managedidentities.v1.ResetAdminPassword]
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.name: StringRequired. The domain resource name using the form:
projects/{project_id}/locations/global/domains/{domain_name}
Implementations§
Trait Implementations§
Source§impl Clone for ResetAdminPasswordRequest
impl Clone for ResetAdminPasswordRequest
Source§fn clone(&self) -> ResetAdminPasswordRequest
fn clone(&self) -> ResetAdminPasswordRequest
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 ResetAdminPasswordRequest
impl Debug for ResetAdminPasswordRequest
Source§impl Default for ResetAdminPasswordRequest
impl Default for ResetAdminPasswordRequest
Source§fn default() -> ResetAdminPasswordRequest
fn default() -> ResetAdminPasswordRequest
Returns the “default value” for a type. Read more
Source§impl Message for ResetAdminPasswordRequest
impl Message for ResetAdminPasswordRequest
impl StructuralPartialEq for ResetAdminPasswordRequest
Auto Trait Implementations§
impl Freeze for ResetAdminPasswordRequest
impl RefUnwindSafe for ResetAdminPasswordRequest
impl Send for ResetAdminPasswordRequest
impl Sync for ResetAdminPasswordRequest
impl Unpin for ResetAdminPasswordRequest
impl UnsafeUnpin for ResetAdminPasswordRequest
impl UnwindSafe for ResetAdminPasswordRequest
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