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.
Trait Implementations§
source§impl Clone for SanitizeError
impl Clone for SanitizeError
source§fn clone(&self) -> SanitizeError
fn clone(&self) -> SanitizeError
Returns a copy of the value. Read more