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 discouraged with an unused variant.
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
C0SpaceIgnored
EmbeddedCredentials
ExpectedDoubleSlash
ExpectedFileDoubleSlash
FileWithHostAndWindowsDrive
NonUrlCodePoint
NullInFragment
PercentDecode
TabOrNewlineIgnored
UnencodedAtSign
Implementations
sourceimpl SyntaxViolation
impl SyntaxViolation
pub fn description(&self) -> &'static str
Trait Implementations
sourceimpl Clone for SyntaxViolation
impl Clone for SyntaxViolation
sourcefn clone(&self) -> SyntaxViolation
fn clone(&self) -> SyntaxViolation
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for SyntaxViolation
impl Debug for SyntaxViolation
sourceimpl Display for SyntaxViolation
impl Display for SyntaxViolation
sourceimpl PartialEq<SyntaxViolation> for SyntaxViolation
impl PartialEq<SyntaxViolation> for SyntaxViolation
sourcefn eq(&self, other: &SyntaxViolation) -> bool
fn eq(&self, other: &SyntaxViolation) -> bool
impl Copy for SyntaxViolation
impl Eq for SyntaxViolation
impl StructuralEq for SyntaxViolation
impl StructuralPartialEq for SyntaxViolation
Auto Trait Implementations
impl RefUnwindSafe for SyntaxViolation
impl Send for SyntaxViolation
impl Sync for SyntaxViolation
impl Unpin for SyntaxViolation
impl UnwindSafe for SyntaxViolation
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more