[−][src]Enum prc::xml::ReadError
Types of errors encountered the XML param file
Variants
QuickXml(Error)quick-xml error, such as mismatched tags, non-utf8 text, broken syntax, etc
Value parsing error
UnknownOpenTag(String)Opening tag has an unknown name
UnmatchedCloseTag(String)Close tag name doesn't match open tag name
For child nodes of structs, the 'hash' attribute is not found
For the first tag after XML declaration, tag must be 'struct'
ExpectedOpenOrCloseTag(String)After reading a struct or list tag, reader either expects a new open tag or that param's own close tag
ExpectedCloseTag(String)For after reading a value-type param and its value, expects the close tag
After reading the open tag for a value-type param, expects the text value
UnhandledEvent(QuickXmlEventType)Any XML event not handled
Trait Implementations
impl Debug for ReadError[src]
impl From<Error> for ReadError[src]
impl From<Error> for ReadError[src]
impl From<Utf8Error> for ReadError[src]
Auto Trait Implementations
impl !RefUnwindSafe for ReadError
impl Send for ReadError
impl Sync for ReadError
impl Unpin for ReadError
impl !UnwindSafe for ReadError
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, 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>,