Struct google_clouddebugger2::GerritSourceContext[][src]

pub struct GerritSourceContext {
    pub alias_context: Option<AliasContext>,
    pub revision_id: Option<String>,
    pub host_uri: Option<String>,
    pub alias_name: Option<String>,
    pub gerrit_project: 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

An alias, which may be a branch or tag.

A revision (commit) ID.

The URI of a running Gerrit instance.

The name of an alias (branch, tag, etc.).

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

Trait Implementations

impl Default for GerritSourceContext
[src]

Returns the "default value" for a type. Read more

impl Clone for GerritSourceContext
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GerritSourceContext
[src]

Formats the value using the given formatter. Read more

impl Part for GerritSourceContext
[src]

Auto Trait Implementations