pub enum GraphMlError {
Io(Error),
Xml(String),
MissingAttr(String),
}Expand description
Error type for GraphML operations.
Variants§
Trait Implementations§
Source§impl Debug for GraphMlError
impl Debug for GraphMlError
Source§impl Display for GraphMlError
impl Display for GraphMlError
Source§impl Error for GraphMlError
impl Error for GraphMlError
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()
Auto Trait Implementations§
impl !RefUnwindSafe for GraphMlError
impl !UnwindSafe for GraphMlError
impl Freeze for GraphMlError
impl Send for GraphMlError
impl Sync for GraphMlError
impl Unpin for GraphMlError
impl UnsafeUnpin for GraphMlError
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