1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-23 16:21:06 +01:00

uncomment error variant

This commit is contained in:
Rob Ede 2023-03-13 14:30:21 +00:00
parent bfdc29ebb8
commit 442fa279da
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933

View File

@ -35,9 +35,10 @@ pub enum UriSegmentError {
/// Segment ended with the wrapped invalid character.
#[display(fmt = "segment ended with invalid character: ('{_0}')")]
BadEnd(char),
// /// Path is not a valid UTF-8 string after percent-decoding.
// #[display(fmt = "path is not a valid UTF-8 string after percent-decoding")]
// NotValidUtf8,
/// Path is not a valid UTF-8 string after percent-decoding.
#[display(fmt = "path is not a valid UTF-8 string after percent-decoding")]
NotValidUtf8,
}
impl ResponseError for UriSegmentError {