#[non_exhaustive]pub struct GoogleAccount {
pub username: String,
pub password: String,
/* private fields */
}๐Deprecated
Expand description
Describes authentication configuration that uses a Google account.
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.username: String๐Deprecated
Required. The user name of the Google account.
password: String๐Deprecated
Required. Input only. The password of the Google account. The credential is stored encrypted and not returned in any response nor included in audit logs.
Implementationsยง
Sourceยงimpl GoogleAccount
impl GoogleAccount
Trait Implementationsยง
Sourceยงimpl Clone for GoogleAccount
impl Clone for GoogleAccount
Sourceยงfn clone(&self) -> GoogleAccount
fn clone(&self) -> GoogleAccount
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 GoogleAccount
impl Debug for GoogleAccount
Sourceยงimpl Default for GoogleAccount
impl Default for GoogleAccount
Sourceยงfn default() -> GoogleAccount
fn default() -> GoogleAccount
Returns the โdefault valueโ for a type. Read more
Sourceยงimpl Message for GoogleAccount
impl Message for GoogleAccount
Sourceยงimpl PartialEq for GoogleAccount
impl PartialEq for GoogleAccount
impl StructuralPartialEq for GoogleAccount
Auto Trait Implementationsยง
impl Freeze for GoogleAccount
impl RefUnwindSafe for GoogleAccount
impl Send for GoogleAccount
impl Sync for GoogleAccount
impl Unpin for GoogleAccount
impl UnwindSafe for GoogleAccount
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