#[non_exhaustive]pub struct ResetAdminPasswordResponse {
pub password: String,
/* private fields */
}Expand description
Response 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.password: StringA random password. See admin for more information.
Implementations§
Trait Implementations§
Source§impl Clone for ResetAdminPasswordResponse
impl Clone for ResetAdminPasswordResponse
Source§fn clone(&self) -> ResetAdminPasswordResponse
fn clone(&self) -> ResetAdminPasswordResponse
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 ResetAdminPasswordResponse
impl Debug for ResetAdminPasswordResponse
Source§impl Default for ResetAdminPasswordResponse
impl Default for ResetAdminPasswordResponse
Source§fn default() -> ResetAdminPasswordResponse
fn default() -> ResetAdminPasswordResponse
Returns the “default value” for a type. Read more
Source§impl Message for ResetAdminPasswordResponse
impl Message for ResetAdminPasswordResponse
impl StructuralPartialEq for ResetAdminPasswordResponse
Auto Trait Implementations§
impl Freeze for ResetAdminPasswordResponse
impl RefUnwindSafe for ResetAdminPasswordResponse
impl Send for ResetAdminPasswordResponse
impl Sync for ResetAdminPasswordResponse
impl Unpin for ResetAdminPasswordResponse
impl UnsafeUnpin for ResetAdminPasswordResponse
impl UnwindSafe for ResetAdminPasswordResponse
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