Struct gapi_grpc::google::devtools::sourcerepo::v1::Repo[][src]

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

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

Fields

name: 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: i64

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

url: String

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

mirror_config: Option<MirrorConfig>

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

Trait Implementations

impl Clone for Repo[src]

impl Debug for Repo[src]

impl Default for Repo[src]

impl Message for Repo[src]

impl PartialEq<Repo> for Repo[src]

impl StructuralPartialEq 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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for 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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]