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