[][src]Struct repo_cli::Repository

pub struct Repository {
    pub name: String,
    pub path: Option<PathBuf>,
    pub work: Option<String>,
    pub clone: Option<String>,
    pub use_cli: Option<bool>,
    pub tags: BTreeSet<String>,
    pub remotes: Vec<Remote>,
    pub config: PathBuf,
    pub location: Location,
}

Fields

name: Stringpath: Option<PathBuf>work: Option<String>clone: Option<String>use_cli: Option<bool>tags: BTreeSet<String>remotes: Vec<Remote>config: PathBuflocation: Location

Methods

impl Repository[src]

pub fn resolve_workspace_path(&self, cache: &Cache) -> PathBuf[src]

pub fn path_from_location(location: Location) -> PathBuf[src]

pub fn resolve_from_tags<F, T>(&self, cache: &Cache, resolver: F) -> Vec<T> where
    F: Fn(&Tag) -> Option<T>, 
[src]

pub fn set_location(&mut self, location: Location)[src]

pub fn del_cache_file(&self) -> Result<()>[src]

Trait Implementations

impl Clone for Repository[src]

impl Debug for Repository[src]

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

impl Serialize for Repository[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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,