pub trait ResultExt<X, T> {
// Required method
fn get_internal_error(self) -> Result<X, Result<T, String>>;
}Expand description
Extension trait for extracting internal errors from VirtualServerError
results.
Provides a method to distinguish between internal handler errors and other virtual server errors.