Struct google_remotebuildexecution2::api::BuildBazelRemoteExecutionV2NodeProperties[][src]

pub struct BuildBazelRemoteExecutionV2NodeProperties {
    pub mtime: Option<String>,
    pub properties: Option<Vec<BuildBazelRemoteExecutionV2NodeProperty>>,
    pub unix_mode: Option<u32>,
}

Node properties for FileNodes, DirectoryNodes, and SymlinkNodes. The server is responsible for specifying the properties that it accepts.

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

Fields

mtime: Option<String>

The file’s last modification timestamp.

properties: Option<Vec<BuildBazelRemoteExecutionV2NodeProperty>>

A list of string-based NodeProperties.

unix_mode: Option<u32>

The UNIX file mode, e.g., 0755.

Trait Implementations

impl Clone for BuildBazelRemoteExecutionV2NodeProperties[src]

impl Debug for BuildBazelRemoteExecutionV2NodeProperties[src]

impl Default for BuildBazelRemoteExecutionV2NodeProperties[src]

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

impl Part for BuildBazelRemoteExecutionV2NodeProperties[src]

impl Serialize for BuildBazelRemoteExecutionV2NodeProperties[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> Instrument 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.