[][src]Struct google_clouduseraccountsvm_beta::LinuxAccountViews

pub struct LinuxAccountViews {
    pub kind: Option<String>,
    pub user_views: Option<Vec<LinuxUserView>>,
    pub group_views: Option<Vec<LinuxGroupView>>,
}

A list of all Linux accounts for this project. This API is only used by Compute Engine virtual machines to get information about user accounts for a project or instance. Linux resources are read-only views into users and groups managed by the Compute Engine Accounts API.

This type is not used in any activity, and only used as part of another schema.

Fields

kind: Option<String>

[Output Only] Type of the resource. Always clouduseraccounts#linuxAccountViews for Linux resources.

user_views: Option<Vec<LinuxUserView>>

[Output Only] A list of all users within a project.

group_views: Option<Vec<LinuxGroupView>>

[Output Only] A list of all groups within a project.

Trait Implementations

impl Clone for LinuxAccountViews[src]

impl Debug for LinuxAccountViews[src]

impl Default for LinuxAccountViews[src]

impl<'de> Deserialize<'de> for LinuxAccountViews[src]

impl Part for LinuxAccountViews[src]

impl Serialize for LinuxAccountViews[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any