pub enum EscapeError {
UnrecognizedEntity(Range<usize>, String),
UnterminatedEntity(Range<usize>),
InvalidCharRef(ParseCharRefError),
}
Expand description
Error for XML escape / unescape.
Variants§
UnrecognizedEntity(Range<usize>, String)
Referenced entity in unknown to the parser.
UnterminatedEntity(Range<usize>)
Cannot find ;
after &
InvalidCharRef(ParseCharRefError)
Attempt to parse character reference (&#<dec-number>;
or &#x<hex-number>;
)
was unsuccessful, not all characters are decimal or hexadecimal numbers.
Trait Implementations§
Source§impl Clone for EscapeError
impl Clone for EscapeError
Source§fn clone(&self) -> EscapeError
fn clone(&self) -> EscapeError
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 EscapeError
impl Debug for EscapeError
Source§impl Display for EscapeError
impl Display for EscapeError
Source§impl Error for EscapeError
impl Error for EscapeError
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()
Source§impl From<EscapeError> for DeError
Available on crate feature serialize
only.
impl From<EscapeError> for DeError
Available on crate feature
serialize
only.Source§fn from(e: EscapeError) -> Self
fn from(e: EscapeError) -> Self
Converts to this type from the input type.
Source§impl From<EscapeError> for Error
impl From<EscapeError> for Error
Source§fn from(error: EscapeError) -> Error
fn from(error: EscapeError) -> Error
Creates a new Error::EscapeError
from the given error
Source§impl PartialEq for EscapeError
impl PartialEq for EscapeError
impl StructuralPartialEq for EscapeError
Auto Trait Implementations§
impl Freeze for EscapeError
impl RefUnwindSafe for EscapeError
impl Send for EscapeError
impl Sync for EscapeError
impl Unpin for EscapeError
impl UnwindSafe for EscapeError
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
)