Struct idgit::Repo[][src]

pub struct Repo { /* fields omitted */ }

Implementations

impl Repo[src]

pub fn open<P: AsRef<Path>>(path: P) -> Result<Self>[src]

pub fn can_undo(&self) -> bool[src]

pub fn can_redo(&self) -> bool[src]

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

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

pub fn path(&self) -> &Path[src]

pub fn uncommitted_files(&self) -> Result<Vec<Meta>>[src]

pub fn diff_details(&self, diff: &Meta) -> Result<Details>[src]

pub fn stage_file(&mut self, file: File) -> Result<()>[src]

pub fn unstage_file(&mut self, file: File) -> Result<()>[src]

pub fn stage_contents(&mut self, file: File, contents: Contents) -> Result<()>[src]

Trait Implementations

impl Debug 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, U> Into<U> for T where
    U: From<T>, 
[src]

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.