Struct google_ondemandscanning1::api::GerritSourceContext[][src]

pub struct GerritSourceContext {
    pub alias_context: Option<AliasContext>,
    pub gerrit_project: Option<String>,
    pub host_uri: Option<String>,
    pub revision_id: Option<String>,
}

A SourceContext referring to a Gerrit project.

This type is not used in any activity, and only used as part of another schema.

Fields

alias_context: Option<AliasContext>

An alias, which may be a branch or tag.

gerrit_project: Option<String>

The full project name within the host. Projects may be nested, so “project/subproject” is a valid project name. The “repo name” is the hostURI/project.

host_uri: Option<String>

The URI of a running Gerrit instance.

revision_id: Option<String>

A revision (commit) ID.

Trait Implementations

impl Clone for GerritSourceContext[src]

impl Debug for GerritSourceContext[src]

impl Default for GerritSourceContext[src]

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

impl Part for GerritSourceContext[src]

impl Serialize for GerritSourceContext[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> Instrument 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.