1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
use std::{ffi::NulError, num::TryFromIntError};
use thiserror::Error;
#[derive(Error, Debug, Clone)]
pub enum OpenSlideError {
#[error("Internal error: {0}")]
InternalError(String),
#[error("Internal error: {0}")]
ImageError(String),
#[error("File {0} does not exist")]
MissingFile(String),
#[error("Unsupported file format: {0}")]
UnsupportedFile(String),
#[error("OpenSlide error: {0}")]
CoreError(String),
}
impl From<TryFromIntError> for OpenSlideError {
fn from(err: TryFromIntError) -> Self {
OpenSlideError::InternalError(err.to_string())
}
}
impl From<NulError> for OpenSlideError {
fn from(err: NulError) -> Self {
OpenSlideError::InternalError(err.to_string())
}
}