pub struct BuildBazelRemoteExecutionV2OutputFile {
pub contents: Option<Vec<u8>>,
pub digest: Option<BuildBazelRemoteExecutionV2Digest>,
pub is_executable: Option<bool>,
pub node_properties: Option<BuildBazelRemoteExecutionV2NodeProperties>,
pub path: Option<String>,
}Expand description
An OutputFile is similar to a FileNode, but it is used as an output in an ActionResult. It allows a full file path rather than only a name.
This type is not used in any activity, and only used as part of another schema.
Fields§
§contents: Option<Vec<u8>>The contents of the file if inlining was requested. The server SHOULD NOT inline file contents unless requested by the client in the GetActionResultRequest message. The server MAY omit inlining, even if requested, and MUST do so if inlining would cause the response to exceed message size limits.
digest: Option<BuildBazelRemoteExecutionV2Digest>The digest of the file’s content.
is_executable: Option<bool>True if file is executable, false otherwise.
node_properties: Option<BuildBazelRemoteExecutionV2NodeProperties>no description provided
path: Option<String>The full path of the file relative to the working directory, including the filename. The path separator is a forward slash /. Since this is a relative path, it MUST NOT begin with a leading forward slash.
Trait Implementations§
Source§impl Clone for BuildBazelRemoteExecutionV2OutputFile
impl Clone for BuildBazelRemoteExecutionV2OutputFile
Source§fn clone(&self) -> BuildBazelRemoteExecutionV2OutputFile
fn clone(&self) -> BuildBazelRemoteExecutionV2OutputFile
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more