forked from developmentseed/async-tiff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.rs
46 lines (36 loc) · 1.16 KB
/
error.rs
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
43
44
45
46
//! Error handling.
use std::fmt::Debug;
use thiserror::Error;
/// Enum with all errors in this crate.
#[derive(Error, Debug)]
#[non_exhaustive]
pub enum AsyncTiffError {
/// End of file error.
#[error("End of File: expected to read {0} bytes, got {1}")]
EndOfFile(usize, usize),
/// General error.
#[error("General error: {0}")]
General(String),
/// IO Error.
#[error(transparent)]
IOError(#[from] std::io::Error),
/// Error while decoding JPEG data.
#[error(transparent)]
JPEGDecodingError(#[from] jpeg::Error),
/// Error while fetching data using object store.
#[cfg(feature = "object_store")]
#[error(transparent)]
ObjectStore(#[from] object_store::Error),
/// An error during TIFF tag parsing.
#[error(transparent)]
InternalTIFFError(#[from] crate::tiff::TiffError),
/// Reqwest error
#[cfg(feature = "reqwest")]
#[error(transparent)]
ReqwestError(#[from] reqwest::Error),
/// External error
#[error(transparent)]
External(Box<dyn std::error::Error + Send + Sync>),
}
/// Crate-specific result type.
pub type AsyncTiffResult<T> = std::result::Result<T, AsyncTiffError>;