pub enum GitToolError {
Arrow(ArrowError),
NoBatch,
}Expand description
Errors from git tool operations.
Variants§
Arrow(ArrowError)
NoBatch
Trait Implementations§
Source§impl Debug for GitToolError
impl Debug for GitToolError
Source§impl Display for GitToolError
impl Display for GitToolError
Source§impl Error for GitToolError
impl Error for GitToolError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<ArrowError> for GitToolError
impl From<ArrowError> for GitToolError
Source§fn from(source: ArrowError) -> Self
fn from(source: ArrowError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for GitToolError
impl !UnwindSafe for GitToolError
impl Freeze for GitToolError
impl Send for GitToolError
impl Sync for GitToolError
impl Unpin for GitToolError
impl UnsafeUnpin for GitToolError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more