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 moreSource§impl Default for BuildBazelRemoteExecutionV2OutputFile
impl Default for BuildBazelRemoteExecutionV2OutputFile
Source§fn default() -> BuildBazelRemoteExecutionV2OutputFile
fn default() -> BuildBazelRemoteExecutionV2OutputFile
Source§impl<'de> Deserialize<'de> for BuildBazelRemoteExecutionV2OutputFile
impl<'de> Deserialize<'de> for BuildBazelRemoteExecutionV2OutputFile
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Part for BuildBazelRemoteExecutionV2OutputFile
Auto Trait Implementations§
impl Freeze for BuildBazelRemoteExecutionV2OutputFile
impl RefUnwindSafe for BuildBazelRemoteExecutionV2OutputFile
impl Send for BuildBazelRemoteExecutionV2OutputFile
impl Sync for BuildBazelRemoteExecutionV2OutputFile
impl Unpin for BuildBazelRemoteExecutionV2OutputFile
impl UnwindSafe for BuildBazelRemoteExecutionV2OutputFile
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more