[][src]Struct openshift_openapi::api::build::v1::GitBuildSource

pub struct GitBuildSource {
    pub http_proxy: Option<String>,
    pub https_proxy: Option<String>,
    pub no_proxy: Option<String>,
    pub ref_: Option<String>,
    pub uri: String,
}

GitBuildSource defines the parameters of a Git SCM

Fields

http_proxy: Option<String>

httpProxy is a proxy used to reach the git repository over http

https_proxy: Option<String>

httpsProxy is a proxy used to reach the git repository over https

no_proxy: Option<String>

noProxy is the list of domains for which the proxy should not be used

ref_: Option<String>

ref is the branch/tag/ref to build.

uri: String

uri points to the source that will be built. The structure of the source will depend on the type of build to run

Trait Implementations

impl Clone for GitBuildSource[src]

impl Debug for GitBuildSource[src]

impl Default for GitBuildSource[src]

impl<'de> Deserialize<'de> for GitBuildSource[src]

impl PartialEq<GitBuildSource> for GitBuildSource[src]

impl Serialize for GitBuildSource[src]

impl StructuralPartialEq for GitBuildSource[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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.