pub type Result<T> = Result<T, Error>;Expand description
Convinience Result type for the swim crate.
This is just a type alias for std::result::Result<T, Error>. Where T is the type of the value that is returned on success and Error is the swim error type.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}