pub enum UrlDecodedCharacter {
Literal(char),
Encoded(char),
}Expand description
A decoded character.
Variants§
Literal(char)
This character was present in the encoded string.
Encoded(char)
This character was percent-encoded.
Implementations§
Auto Trait Implementations§
impl Freeze for UrlDecodedCharacter
impl RefUnwindSafe for UrlDecodedCharacter
impl Send for UrlDecodedCharacter
impl Sync for UrlDecodedCharacter
impl Unpin for UrlDecodedCharacter
impl UnwindSafe for UrlDecodedCharacter
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more