pub enum DictxError {
Io(Error),
Csv(Error),
Json(Error),
Tantivy(String),
Config(String),
UnsupportedSource(String),
InvalidData(String),
Message(String),
}Variants§
Io(Error)
Csv(Error)
Json(Error)
Tantivy(String)
Config(String)
UnsupportedSource(String)
InvalidData(String)
Message(String)
Trait Implementations§
Source§impl Debug for DictxError
impl Debug for DictxError
Source§impl Display for DictxError
impl Display for DictxError
Source§impl Error for DictxError
impl Error for DictxError
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<Error> for DictxError
impl From<Error> for DictxError
Source§impl From<Error> for DictxError
impl From<Error> for DictxError
Auto Trait Implementations§
impl Freeze for DictxError
impl !RefUnwindSafe for DictxError
impl Send for DictxError
impl Sync for DictxError
impl Unpin for DictxError
impl UnsafeUnpin for DictxError
impl !UnwindSafe for DictxError
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