Struct gapi_grpc::google::devtools::resultstore::v2::FileSet[][src]

pub struct FileSet {
    pub name: String,
    pub id: Option<Id>,
    pub file_sets: Vec<String>,
    pub files: Vec<File>,
}
[]

This resource represents a set of Files and other (nested) FileSets. A FileSet is a node in the graph, and the file_sets field represents the outgoing edges. A resource may reference various nodes in the graph to represent the transitive closure of all files from those nodes. The FileSets must form a directed acyclic graph. The Upload API is unable to enforce that the graph is acyclic at write time, and if cycles are written, it may cause issues at read time.

A FileSet may be referenced by other resources in conjunction with Files.

Clients should prefer using Files directly under resources. Clients should not use FileSets unless their usecase requires a directed acyclic graph of Files.

Fields

name: String
[]

The format of this FileSet resource name must be: invocations/${INVOCATION_ID}/fileSets/${url_encode(FILE_SET_ID)}

id: Option<Id>
[]

The resource ID components that identify the file set. They must match the resource name after proper encoding.

file_sets: Vec<String>
[]

List of names of other file sets that are referenced from this one. Each name must point to a file set under the same invocation. The name format must be: invocations/${INVOCATION_ID}/fileSets/${FILE_SET_ID}

files: Vec<File>
[]

Files that are contained within this file set. The uid field in the file should be unique for the Invocation.

Trait Implementations

impl Clone for FileSet[src][+]

impl Debug for FileSet[src][+]

impl Default for FileSet[src][+]

impl Message for FileSet[src][+]

impl PartialEq<FileSet> for FileSet[src][+]

impl StructuralPartialEq for FileSet[src]

Auto Trait Implementations

impl RefUnwindSafe for FileSet

impl Send for FileSet

impl Sync for FileSet

impl Unpin for FileSet

impl UnwindSafe for FileSet

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> 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>, 
[src][+]

impl<T> WithSubscriber for T[src][+]