Type Alias binary_utils::Result
source · pub type Result<T> = Result<T, Error>;Expand description
A type alias for std::result::Result with the error type set to Error.
This type is commonly used throughout the codebase to represent the result of operations
that may fail, where T represents the success value and Error represents the type of error.
Aliased Type§
enum Result<T> {
Ok(T),
Err(Error),
}