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

pub struct TraverseFileSetsRequest {
    pub name: String,
    pub page_size: i32,
    pub page_start: Option<PageStart>,
}

Request passed into TraverseFileSets

Fields

name: String

Required. The name of the resource to traverse. It must match one of the following formats:

invocations/${INVOCATION_ID}/fileSets/${FILE_SET_ID} This returns the transitive closure of FileSets referenced by the given FileSet, including itself.

invocations/${INVOCATION_ID}/targets/${url_encode(TARGET_ID)}/configuredTargets/${CONFIGURATION_ID}/actions/${ACTION_ID} This returns the transitive closure of FileSets referenced by the given Action. If ${ACTION_ID} is “-”, this returns the transitive closure of FileSets referenced by all Actions under the given ConfiguredTarget.

page_size: i32

The maximum number of items to return. Zero means all, but may be capped by the server.

page_start: Option<PageStart>

Options for pagination.

Trait Implementations

impl Clone for TraverseFileSetsRequest[src]

impl Debug for TraverseFileSetsRequest[src]

impl Default for TraverseFileSetsRequest[src]

impl Message for TraverseFileSetsRequest[src]

impl PartialEq<TraverseFileSetsRequest> for TraverseFileSetsRequest[src]

impl StructuralPartialEq for TraverseFileSetsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for TraverseFileSetsRequest

impl Send for TraverseFileSetsRequest

impl Sync for TraverseFileSetsRequest

impl Unpin for TraverseFileSetsRequest

impl UnwindSafe for TraverseFileSetsRequest

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]