pub type ResultWithLibError<T, E = LibError> = Result<T, E>;
Expand description
Result type with fixed LibError using thiserror.
It makes simpler to write returns from functions.
Result type alias with fixed LibError using thiserror
It makes simpler to write returns from functions.
Aliased Type§
enum ResultWithLibError<T, E = LibError> {
Ok(T),
Err(E),
}