Struct gapi_grpc::google::cloud::privatecatalog::v1beta1::GitSource[][src]

pub struct GitSource {
    pub repo: String,
    pub dir: String,
    pub ref: Option<Ref>,
}

Defines how to access a Git Source.

Fields

repo: String

Location of the Git repo to build.

dir: String

Directory, relative to the source root, in which to run the build.

This must be a relative path. If a step’s dir is specified and is an absolute path, this value is ignored for that step’s execution.

ref: Option<Ref>

The revision to fetch from the Git repository such as a branch, a tag, a commit SHA, or any Git ref.

Trait Implementations

impl Clone for GitSource[src]

impl Debug for GitSource[src]

impl Default for GitSource[src]

impl Message for GitSource[src]

impl PartialEq<GitSource> for GitSource[src]

impl StructuralPartialEq for GitSource[src]

Auto Trait Implementations

impl RefUnwindSafe for GitSource

impl Send for GitSource

impl Sync for GitSource

impl Unpin for GitSource

impl UnwindSafe for GitSource

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]