[−][src]Enum xmlparser::StreamError
A stream parser errors.
Variants
The steam ended earlier than we expected.
Should only appear on invalid input data. Errors in a valid XML should be handled by errors below.
An invalid name.
A non-XML character has occurred.
Valid characters are: https://www.w3.org/TR/xml/#char32
An invalid/unexpected character.
The first byte is an actual one, the second one is expected.
We are using a single value to reduce the struct size.
InvalidCharMultiple(u8, &'static [u8], TextPos)
An invalid/unexpected character.
Just like InvalidChar
, but specifies multiple expected characters.
An unexpected character instead of "
or '
.
An unexpected character instead of an XML space.
Includes: ' ' \n \r \t   	 
 

.
An unexpected string.
Contains what string was expected.
An invalid reference.
An invalid ExternalID in the DTD.
Comment cannot contain --
.
Comment cannot end with -
.
A Character Data node contains an invalid data.
Currently, only ]]>
is not allowed.
Trait Implementations
impl Clone for StreamError
[src]
fn clone(&self) -> StreamError
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for StreamError
[src]
impl Debug for StreamError
[src]
impl Display for StreamError
[src]
impl Error for StreamError
[src]
Auto Trait Implementations
impl RefUnwindSafe for StreamError
impl Send for StreamError
impl Sync for StreamError
impl Unpin for StreamError
impl UnwindSafe for StreamError
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,