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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
use io;
use PathBuf;
use Error;
/// Error types for the CodeBank library.
///
/// This enum represents all possible errors that can occur in the CodeBank library.
///
/// # Examples
///
/// ```
/// use codebank::Error;
/// use std::path::PathBuf;
///
/// // Create an IO error
/// let io_err = std::io::Error::new(std::io::ErrorKind::NotFound, "file not found");
/// let error = Error::Io(io_err);
/// assert!(matches!(error, Error::Io(_)));
///
/// // Create a parse error
/// let error = Error::Parse("invalid syntax".to_string());
/// assert!(matches!(error, Error::Parse(_)));
///
/// // Create a file not found error
/// let error = Error::FileNotFound(PathBuf::from("missing.rs"));
/// assert!(matches!(error, Error::FileNotFound(_)));
/// ```
/// Result type alias for CodeBank operations.
///
/// This type is used throughout the CodeBank library to handle operations
/// that can fail with a [`Error`].
///
/// # Examples
///
/// ```
/// use codebank::{Result, Error};
/// use std::path::PathBuf;
///
/// fn example_operation() -> Result<String> {
/// // Simulate a failing operation
/// Err(Error::FileNotFound(PathBuf::from("missing.rs")))
/// }
///
/// // Handle the result
/// match example_operation() {
/// Ok(content) => println!("Success: {}", content),
/// Err(e) => println!("Operation failed: {}", e),
/// }
/// ```
pub type Result<T> = Result;