[][src]Enum git_workarea::GitError

pub enum GitError {
    Subcommand {
        subcommand: &'static str,
        source: Error,
    },
    Git {
        msg: Cow<'static, str>,
        source: Option<Error>,
    },
    InvalidRef {
        ref_: Cow<'static, str>,
    },
    // some variants omitted
}

Errors which may occur when working with workareas.

This enum is non_exhaustive, but cannot be marked as such until it is stable. In the meantime, there is a hidden variant.

Variants

Subcommand

Command preparation failure.

Fields of Subcommand

subcommand: &'static str

The git subcommand which failed.

source: Error

The root cause of the failure.

Git

A git error occurred.

Fields of Git

msg: Cow<'static, str>

Message describing what failed.

source: Option<Error>

The root cause of the failure (if available).

InvalidRef

An invalid ref was used.

Fields of InvalidRef

ref_: Cow<'static, str>

The invalid ref (or description of what was wrong).

Methods

impl GitError[src]

pub fn subcommand(subcommand: &'static str, source: Error) -> Self[src]

Convenience method for constructing an error for a git subcommand failure.

Trait Implementations

impl From<GitError> for WorkAreaError[src]

impl Display for GitError[src]

impl Debug for GitError[src]

impl Error for GitError[src]

Auto Trait Implementations

impl Send for GitError

impl Sync for GitError

impl Unpin for GitError

impl !UnwindSafe for GitError

impl !RefUnwindSafe for GitError

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToString for T where
    T: Display + ?Sized
[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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]