Enum url::SyntaxViolation
source · #[non_exhaustive]pub enum SyntaxViolation {
Backslash,
C0SpaceIgnored,
EmbeddedCredentials,
ExpectedDoubleSlash,
ExpectedFileDoubleSlash,
FileWithHostAndWindowsDrive,
NonUrlCodePoint,
NullInFragment,
PercentDecode,
TabOrNewlineIgnored,
UnencodedAtSign,
}
Expand description
Non-fatal syntax violations that can occur during parsing.
This may be extended in the future so exhaustive matching is forbidden.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Backslash
backslash
C0SpaceIgnored
leading or trailing control or space character are ignored in URLs
EmbeddedCredentials
embedding authentication information (username or password) in an URL is not recommended
ExpectedDoubleSlash
expected //
ExpectedFileDoubleSlash
expected // after file:
FileWithHostAndWindowsDrive
file: with host and Windows drive letter
NonUrlCodePoint
non-URL code point
NullInFragment
NULL characters are ignored in URL fragment identifiers
PercentDecode
expected 2 hex digits after %
TabOrNewlineIgnored
tabs or newlines are ignored in URLs
UnencodedAtSign
unencoded @ sign in username or password
Implementations§
source§impl SyntaxViolation
impl SyntaxViolation
pub fn description(&self) -> &'static str
Trait Implementations§
source§impl Clone for SyntaxViolation
impl Clone for SyntaxViolation
source§fn clone(&self) -> SyntaxViolation
fn clone(&self) -> SyntaxViolation
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for SyntaxViolation
impl Debug for SyntaxViolation
source§impl Display for SyntaxViolation
impl Display for SyntaxViolation
source§impl PartialEq for SyntaxViolation
impl PartialEq for SyntaxViolation
source§fn eq(&self, other: &SyntaxViolation) -> bool
fn eq(&self, other: &SyntaxViolation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for SyntaxViolation
impl Eq for SyntaxViolation
impl StructuralPartialEq for SyntaxViolation
Auto Trait Implementations§
impl Freeze for SyntaxViolation
impl RefUnwindSafe for SyntaxViolation
impl Send for SyntaxViolation
impl Sync for SyntaxViolation
impl Unpin for SyntaxViolation
impl UnwindSafe for SyntaxViolation
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
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)