pub enum Error {
    Discovery {
        path: String,
    },
    Worktree {
        path: String,
    },
    Head {
        path: String,
    },
    ReferenceNotInRepo {
        path: String,
        reference: String,
    },
    NoTreeForCommit {
        path: String,
        commit: String,
        tree: String,
    },
    Revwalk {
        path: String,
    },
    CommandError {
        path: String,
        cmd: String,
        error: String,
    },
    Diff {
        path: String,
        tree1: String,
        tree2: String,
    },
    Branch {
        path: String,
        name: String,
    },
}

Variants§

§

Discovery

Fields

§path: String
§

Worktree

Fields

§path: String
§

Head

Fields

§path: String
§

ReferenceNotInRepo

Fields

§path: String
§reference: String
§

NoTreeForCommit

Fields

§path: String
§commit: String
§tree: String
§

Revwalk

Fields

§path: String
§

CommandError

Fields

§path: String
§error: String
§

Diff

Fields

§path: String
§tree1: String
§tree2: String
§

Branch

Fields

§path: String
§name: String

Implementations§

source§

impl Error

source

pub fn discovery<T>(path: &Path) -> Result<T, Error>

source

pub fn worktree<T>(path: &Path) -> Result<T, Error>

source

pub fn head<T>(path: &Path) -> Result<T, Error>

source

pub fn ref_not_in_repo(repo: &Repository, reference: &Reference<'_>) -> Self

source

pub fn ref_not_in_repo_err<T>( repo: &Repository, reference: &Reference<'_> ) -> Result<T, Error>

source

pub fn id_not_in_repo(repo: &Repository, id: &Oid) -> Self

source

pub fn id_not_in_repo_err<T>( repo: &Repository, commit: &Commit<'_> ) -> Result<T, Error>

source

pub fn no_tree_for_commit(repo: &Repository, commit: &Commit<'_>) -> Self

source

pub fn no_tree_for_commit_err<T>( repo: &Repository, commit: &Commit<'_> ) -> Result<T, Error>

source

pub fn revwalk_err<T>(repo: &Repository) -> Result<T, Error>

source

pub fn revwalk(repo: &Repository) -> Error

source

pub fn command_err<T>( repo: &Repository, cmd: &'static str, err: &Error ) -> Result<T, Error>

source

pub fn diff_tree(repo: &Repository, tree1: &Tree<'_>, tree2: &Tree<'_>) -> Self

source

pub fn diff_tree_err<T>( repo: &Repository, tree1: &Tree<'_>, tree2: &Tree<'_> ) -> Result<T, Self>

source

pub fn branch_err<T>(repo: &Repository, name: &str) -> Result<T, Error>

Trait Implementations§

source§

impl Clone for Error

source§

fn clone(&self) -> Error

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Error

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Error for Error

1.30.0 · source§

fn source(&self) -> Option<&(dyn Error + 'static)>

The lower-level source of this error, if any. Read more
1.0.0 · source§

fn description(&self) -> &str

👎Deprecated since 1.42.0: use the Display impl or to_string()
1.0.0 · source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type based access to context intended for error reports. Read more

Auto Trait Implementations§

§

impl RefUnwindSafe for Error

§

impl Send for Error

§

impl Sync for Error

§

impl Unpin for Error

§

impl UnwindSafe for Error

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.