[][src]Struct gcp_client::google::cloud::oslogin::v1beta::LoginProfile

pub struct LoginProfile {
    pub name: String,
    pub posix_accounts: Vec<PosixAccount>,
    pub ssh_public_keys: HashMap<String, SshPublicKey>,
}

The user profile information used for logging in to a virtual machine on Google Compute Engine.

Fields

name: String

Required. A unique user ID.

posix_accounts: Vec<PosixAccount>

The list of POSIX accounts associated with the user.

ssh_public_keys: HashMap<String, SshPublicKey>

A map from SSH public key fingerprint to the associated key object.

Trait Implementations

impl Clone for LoginProfile[src]

impl Debug for LoginProfile[src]

impl Default for LoginProfile[src]

impl Message for LoginProfile[src]

impl PartialEq<LoginProfile> for LoginProfile[src]

impl StructuralPartialEq for LoginProfile[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]