pub enum CodeIndexError {
Io(Error),
Git {
args: Vec<String>,
message: String,
},
TreeSitter(String),
InvalidInput(String),
}Expand description
Blocking code index failure.
Variants§
Trait Implementations§
Source§impl Debug for CodeIndexError
impl Debug for CodeIndexError
Source§impl Display for CodeIndexError
impl Display for CodeIndexError
Source§impl Error for CodeIndexError
impl Error for CodeIndexError
1.30.0 · 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()
Auto Trait Implementations§
impl Freeze for CodeIndexError
impl !RefUnwindSafe for CodeIndexError
impl Send for CodeIndexError
impl Sync for CodeIndexError
impl Unpin for CodeIndexError
impl UnsafeUnpin for CodeIndexError
impl !UnwindSafe for CodeIndexError
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