[][src]Struct pachyderm::pfs::RepoInfo

pub struct RepoInfo {
    pub repo: Option<Repo>,
    pub created: Option<Timestamp>,
    pub size_bytes: u64,
    pub description: String,
    pub branches: Vec<Branch>,
    pub auth_info: Option<RepoAuthInfo>,
}

RepoInfo is the main data structure representing a Repo in etcd

Fields

repo: Option<Repo>created: Option<Timestamp>size_bytes: u64description: Stringbranches: Vec<Branch>auth_info: Option<RepoAuthInfo>

Set by ListRepo and InspectRepo if Pachyderm's auth system is active, but not stored in etcd. To set a user's auth scope for a repo, use the Pachyderm Auth API (in src/client/auth/auth.proto)

Trait Implementations

impl Clone for RepoInfo[src]

impl Debug for RepoInfo[src]

impl Default for RepoInfo[src]

impl Message for RepoInfo[src]

impl PartialEq<RepoInfo> for RepoInfo[src]

impl StructuralPartialEq for RepoInfo[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> 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> 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>, 

impl<T> WithSubscriber for T[src]