pub struct RdfXmlError { /* private fields */ }Expand description
Error that might be returned during parsing.
It might wrap an IO error or be a parsing error.
Trait Implementations§
Source§impl Debug for RdfXmlError
impl Debug for RdfXmlError
Source§impl Display for RdfXmlError
impl Display for RdfXmlError
Source§impl Error for RdfXmlError
impl Error for RdfXmlError
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<AttrError> for RdfXmlError
impl From<AttrError> for RdfXmlError
Source§impl From<Error> for RdfXmlError
impl From<Error> for RdfXmlError
Source§impl From<Error> for RdfXmlError
impl From<Error> for RdfXmlError
Source§impl From<RdfXmlError> for Error
impl From<RdfXmlError> for Error
Source§fn from(error: RdfXmlError) -> Self
fn from(error: RdfXmlError) -> Self
Converts to this type from the input type.
Source§impl ParseError for RdfXmlError
impl ParseError for RdfXmlError
Source§fn textual_position(&self) -> Option<LineBytePosition>
fn textual_position(&self) -> Option<LineBytePosition>
Returns the position of the error in the text, if known.
Auto Trait Implementations§
impl Freeze for RdfXmlError
impl !RefUnwindSafe for RdfXmlError
impl Send for RdfXmlError
impl Sync for RdfXmlError
impl Unpin for RdfXmlError
impl !UnwindSafe for RdfXmlError
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