[][src]Struct google_sourcerepo1::Repo

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

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: Option<String>

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

pubsub_configs: Option<HashMap<String, PubsubConfig>>

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

mirror_config: Option<MirrorConfig>

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

name: Option<String>

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

size: Option<String>

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

Trait Implementations

impl Clone for Repo[src]

impl Debug for Repo[src]

impl Default for Repo[src]

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

impl RequestValue for Repo[src]

impl ResponseResult for Repo[src]

impl Serialize for Repo[src]

Auto Trait Implementations

impl RefUnwindSafe for Repo

impl Send for Repo

impl Sync for Repo

impl Unpin for Repo

impl UnwindSafe for Repo

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.

impl<T> Typeable for T where
    T: Any