Struct google_sourcerepo1::Repo[][src]

pub struct Repo {
    pub url: Option<String>,
    pub size: Option<String>,
    pub mirror_config: Option<MirrorConfig>,
    pub name: Option<String>,
    pub pubsub_configs: Option<HashMap<String, PubsubConfig>>,
}

A repository (or repo) is a Git repository storing versioned source content.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

URL to clone the repository from Google Cloud Source Repositories. Read-only field.

The disk usage of the repo, in bytes. Read-only field. Size is only returned by GetRepo.

How this repository mirrors a repository managed by another service. Read-only field.

Resource name of the repository, of the form projects/<project>/repos/<repo>. The repo name may contain slashes. eg, projects/myproject/repos/name/with/slash

How this repository publishes a change in the repository through Cloud Pub/Sub. Keyed by the topic names.

Trait Implementations

impl Default for Repo
[src]

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

impl Clone for Repo
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Repo
[src]

Formats the value using the given formatter. Read more

impl RequestValue for Repo
[src]

impl ResponseResult for Repo
[src]

Auto Trait Implementations

impl Send for Repo

impl Sync for Repo