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
47
48
49
50
51
52
53
54
55
56
//! # Error Types and Result Definitions
//!
//! This module defines the error types used throughout the crates_llms_txt library.
//! It provides comprehensive error handling for network operations, JSON parsing,
//! file I/O, and documentation generation.
use Error;
/// Comprehensive error type for all operations in the crates_llms_txt library.
///
/// This enum covers all possible error conditions that can occur during
/// documentation fetching, parsing, and generation operations.
/// Convenience type alias for Results using our Error type.
///
/// This allows for more concise error handling throughout the library
/// without having to specify the Error type repeatedly.
pub type Result<T, E = Error> = Result;