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
//! # Security-First Error Handling
//!
//! This module defines the robust error infrastructure for `sys-shred`.
//! It utilizes `thiserror` to provide descriptive, context-aware error messages
//! while maintaining strict type safety across the application.
use Error;
/// The primary error taxonomy for the `sys-shred` ecosystem.
///
/// Every potential failure point, from low-level filesystem I/O to high-level
/// cryptographic entropy exhaustion, is represented here.
/// A specialized `Result` type alias for all `sys-shred` operations.
///
/// This type is used consistently across the library to enforce explicit
/// error propagation and handling.
pub type ShredResult<T> = ;