[][src]Struct lib::project::Project

pub struct Project { /* fields omitted */ }

Methods

impl Project[src]

impl Project[src]

pub fn db_uri(&self) -> &str[src]

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

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

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

pub fn name(&self) -> &str[src]

pub fn commit_iterator(&self) -> ResultDynError<CommitIterator>[src]

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

pub fn commit_dump(&self, message: &str, dump: Vec<u8>) -> ResultDynError<()>[src]

pub fn sync_dump(&self, dump: Vec<u8>) -> Result<()>[src]

pub fn get_dump_at_commit(&self, commit_hash: &str) -> ResultDynError<Vec<u8>>[src]

pub fn get_latest_dump(&self) -> ResultDynError<Vec<u8>>[src]

Auto Trait Implementations

impl RefUnwindSafe for Project

impl Send for Project

impl !Sync for Project

impl Unpin for Project

impl UnwindSafe for Project

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, 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.