pub type Result<T> = Result<T, BottleError>;Expand description
Result type for Bottle operations.
This is a type alias for std::result::Result<T, BottleError>, providing
a convenient way to return results from Bottle operations.
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(BottleError),
}