Struct jj_lib::default_index::ReadonlyIndexLoadError
source · pub struct ReadonlyIndexLoadError {
pub name: String,
pub error: Error,
}
Expand description
Error while loading index segment file.
Fields§
§name: String
Index file name.
error: Error
Underlying error.
Trait Implementations§
source§impl Debug for ReadonlyIndexLoadError
impl Debug for ReadonlyIndexLoadError
source§impl Display for ReadonlyIndexLoadError
impl Display for ReadonlyIndexLoadError
source§impl Error for ReadonlyIndexLoadError
impl Error for ReadonlyIndexLoadError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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 !RefUnwindSafe for ReadonlyIndexLoadError
impl Send for ReadonlyIndexLoadError
impl Sync for ReadonlyIndexLoadError
impl Unpin for ReadonlyIndexLoadError
impl !UnwindSafe for ReadonlyIndexLoadError
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