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
//! Error types for PDF → DOCX conversion.
use Error;
/// Errors returned by `pdf-docx` while converting a PDF to a DOCX
/// (Office Open XML WordprocessingML) document.
///
/// All variants except [`Other`](Self::Other) wrap an underlying error
/// from a more specific layer (PDF parsing, text extraction, XML, ZIP, I/O).
/// Surface the inner cause when reporting the failure.
/// Convenience `Result` alias for fallible `pdf-docx` operations.
pub type Result<T> = Result;