pub type ShredResult<T> = Result<T, ShredError>;Expand description
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.
Aliased Type§
pub enum ShredResult<T> {
Ok(T),
Err(ShredError),
}