pub type Result<T, E = LoaderError> = Result<T, E>;
Expand description
A convenience Result
type that defaults to error::Loader
.
Aliased Type§
enum Result<T, E = LoaderError> {
Ok(T),
Err(E),
}
pub type Result<T, E = LoaderError> = Result<T, E>;
A convenience Result
type that defaults to error::Loader
.
enum Result<T, E = LoaderError> {
Ok(T),
Err(E),
}