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
//! HexResult type alias for consistent error handling.
//!
//! This module provides the standard Result type used throughout the hex crate.
//! HexResult is a type alias for Result<T, Hexserror>, providing consistent
//! error handling and reducing boilerplate in function signatures.
//!
//! Revision History
//! - 2025-10-01T00:00:00Z @AI: Initial HexResult type alias definition.
/// Standard Result type for hex crate operations.
///
/// This is a type alias for `Result<T, Hexserror>`, providing consistent
/// error handling throughout the crate.
///
/// # Example
///
/// ```rust
/// use hexser::HexResult;
///
/// fn do_something() -> HexResult<String> {
/// Ok(String::from("success"))
/// }
/// ```
pub type HexResult<T> = ;