pub type Result<T, Err = Error> = Result<T, Err>;
Expand description
The result type used in the tinymist
crate.
Aliased Type§
enum Result<T, Err = Error> {
Ok(T),
Err(Err),
}
pub type Result<T, Err = Error> = Result<T, Err>;
The result type used in the tinymist
crate.
enum Result<T, Err = Error> {
Ok(T),
Err(Err),
}