pub enum DocumentParseError {
ParserError(ParserError),
BinaryParserError(String),
UnsupportedVersion(u32, Option<String>),
RequiredElementNotFound(String),
ElementParseError(ElementParseError),
PropertyParseError(PropertyParseError),
}Variants§
ParserError(ParserError)
BinaryParserError(String)
UnsupportedVersion(u32, Option<String>)
RequiredElementNotFound(String)
ElementParseError(ElementParseError)
PropertyParseError(PropertyParseError)
Trait Implementations§
Source§impl Debug for DocumentParseError
impl Debug for DocumentParseError
Source§impl PartialEq for DocumentParseError
impl PartialEq for DocumentParseError
impl StructuralPartialEq for DocumentParseError
Auto Trait Implementations§
impl Freeze for DocumentParseError
impl RefUnwindSafe for DocumentParseError
impl Send for DocumentParseError
impl Sync for DocumentParseError
impl Unpin for DocumentParseError
impl UnsafeUnpin for DocumentParseError
impl UnwindSafe for DocumentParseError
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