pub enum SanitizeError {
UnsafePath,
RangeNotSatisfiable,
}Expand description
An error regarding the sanitization of a request.
See the variants below and sanitize_request for when this happens.
Variants§
UnsafePath
The path is unsafe. Nothing should be read from the FS.
This occurs when the path is absolute or contains ./.
RangeNotSatisfiable
The range is too large or the beginning is greater than the end.