Enum git2::ErrorClass

source ·
pub enum ErrorClass {
Show 35 variants None, NoMemory, Os, Invalid, Reference, Zlib, Repository, Config, Regex, Odb, Index, Object, Net, Tag, Tree, Indexer, Ssl, Submodule, Thread, Stash, Checkout, FetchHead, Merge, Ssh, Filter, Revert, Callback, CherryPick, Describe, Rebase, Filesystem, Patch, Worktree, Sha1, Http,
}
Expand description

An enumeration of possible categories of things that can have errors when working with a git repository.

Variants§

§

None

Uncategorized

§

NoMemory

Out of memory or insufficient allocated space

§

Os

Syscall or standard system library error

§

Invalid

Invalid input

§

Reference

Error resolving or manipulating a reference

§

Zlib

ZLib failure

§

Repository

Bad repository state

§

Config

Bad configuration

§

Regex

Regex failure

§

Odb

Bad object

§

Index

Invalid index data

§

Object

Error creating or obtaining an object

§

Net

Network error

§

Tag

Error manipulating a tag

§

Tree

Invalid value in tree

§

Indexer

Hashing or packing error

§

Ssl

Error from SSL

§

Submodule

Error involving submodules

§

Thread

Threading error

§

Stash

Error manipulating a stash

§

Checkout

Checkout failure

§

FetchHead

Invalid FETCH_HEAD

§

Merge

Merge failure

§

Ssh

SSH failure

§

Filter

Error manipulating filters

§

Revert

Error reverting commit

§

Callback

Error from a user callback

§

CherryPick

Error cherry-picking commit

§

Describe

Can’t describe object

§

Rebase

Error during rebase

§

Filesystem

Filesystem-related error

§

Patch

Invalid patch data

§

Worktree

Error involving worktrees

§

Sha1

Hash library error or SHA-1 collision

§

Http

HTTP error

Trait Implementations§

source§

impl Clone for ErrorClass

source§

fn clone(&self) -> ErrorClass

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 ErrorClass

source§

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

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

impl PartialEq for ErrorClass

source§

fn eq(&self, other: &ErrorClass) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for ErrorClass

source§

impl Eq for ErrorClass

source§

impl StructuralPartialEq for ErrorClass

Auto Trait Implementations§

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