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