pub struct ParseError<I = NoInput> { /* private fields */ }
Expand description
An error occurred when parsing a URI/IRI (reference).
Implementations§
source§impl<I: AsRef<str>> ParseError<I>
impl<I: AsRef<str>> ParseError<I>
sourcepub fn into_input(self) -> I
pub fn into_input(self) -> I
Recovers the input that was attempted to parse into a URI/IRI (reference).
sourcepub fn strip_input(&self) -> ParseError
pub fn strip_input(&self) -> ParseError
Returns the error with the input stripped.
Trait Implementations§
source§impl<I: Clone> Clone for ParseError<I>
impl<I: Clone> Clone for ParseError<I>
source§fn clone(&self) -> ParseError<I>
fn clone(&self) -> ParseError<I>
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<I> Debug for ParseError<I>
impl<I> Debug for ParseError<I>
source§impl<I> Display for ParseError<I>
impl<I> Display for ParseError<I>
source§impl<I> Error for ParseError<I>
Available on crate feature std
only.
impl<I> Error for ParseError<I>
Available on crate feature
std
only.1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
impl<I: Copy> Copy for ParseError<I>
Auto Trait Implementations§
impl<I> Freeze for ParseError<I>where
I: Freeze,
impl<I> RefUnwindSafe for ParseError<I>where
I: RefUnwindSafe,
impl<I> Send for ParseError<I>where
I: Send,
impl<I> Sync for ParseError<I>where
I: Sync,
impl<I> Unpin for ParseError<I>where
I: Unpin,
impl<I> UnwindSafe for ParseError<I>where
I: UnwindSafe,
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: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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
)