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: String
§path: Option<PathBuf>
§work: Option<String>
§clone: Option<String>
§use_cli: Option<bool>
§remotes: Vec<Remote>
§config: PathBuf
§location: Location
Implementations§
Source§impl Repository
impl Repository
pub fn resolve_workspace_path(&self, cache: &Cache) -> PathBuf
pub fn path_from_location(location: Location) -> PathBuf
pub fn set_location(&mut self, location: Location)
pub fn del_cache_file(&self) -> Result<()>
Trait Implementations§
Source§impl Clone for Repository
impl Clone for Repository
Source§fn clone(&self) -> Repository
fn clone(&self) -> Repository
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Repository
impl Debug for Repository
Source§impl<'de> Deserialize<'de> for Repository
impl<'de> Deserialize<'de> for Repository
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Repository
impl RefUnwindSafe for Repository
impl Send for Repository
impl Sync for Repository
impl Unpin for Repository
impl UnwindSafe for Repository
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more