pub struct Repository { /* private fields */ }
Expand description
local repository
Implementations§
Source§impl Repository
impl Repository
Sourcepub fn new<P: AsRef<Path>, R: Into<Option<Remote>>>(
path: P,
vcs: Vcs,
remote: R,
) -> Result<Self>
pub fn new<P: AsRef<Path>, R: Into<Option<Remote>>>( path: P, vcs: Vcs, remote: R, ) -> Result<Self>
Make an instance of Repository
from local path.
pub fn is_same_local(&self, other: &Self) -> bool
pub fn is_contained<P: AsRef<Path>>(&self, path: P) -> bool
Sourcepub fn run_command<I, S>(&self, command: &str, args: I) -> Result<bool>
pub fn run_command<I, S>(&self, command: &str, args: I) -> Result<bool>
Run command into the repository.
pub fn name(&self) -> &str
pub fn path_string(&self) -> String
pub fn remote(&self) -> Option<&Remote>
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