pub type Result<T> = SubXResult<T>;Expand description
Convenient type alias for Result<T, SubXError>.
This type alias simplifies error handling throughout the SubX library by providing a default error type for all fallible operations.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(SubXError),
}