[][src]Struct reel::Repo

pub struct Repo { /* fields omitted */ }

A structure representing a git repository

Implementations

impl Repo[src]

pub fn new(url: &str) -> Result<Repo, Error>[src]

pub fn remote(&self) -> &Remote[src]

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

pub fn set_path(&mut self, path: &Path)[src]

pub fn clobber(&self) -> Result<(), Error>[src]

pub fn clone(&self) -> Result<(), Box<dyn Error>>[src]

pub fn pull(&self) -> Result<(), Box<dyn Error>>[src]

pub fn clone_to(&self, path: &Path) -> Result<(), Box<dyn Error>>[src]

pub fn find(&self, id: &str) -> Result<Commit, Box<dyn Error>>[src]

pub fn commit_ids(&self, limit: usize) -> Result<Vec<String>, Box<dyn Error>>[src]

pub fn latest_commit(&self) -> Result<Commit, Box<dyn Error>>[src]

Trait Implementations

impl Debug for Repo[src]

impl Default for Repo[src]

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

impl Serialize 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> 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, 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>,