Enum rs_graph::steinlib::Error [−][src]
pub enum Error {
Io(Error),
Parse(ParseError<LineCol>),
NoMixed,
UnmatchedDimension {
dim: usize,
},
UnmatchedTerminalCount {
got: usize,
expected: usize,
},
InvalidLoop {
node: usize,
},
Format {
msg: String,
},
}Variants
Io(Error)Show fields
Fields of UnmatchedDimension
dim: usizeShow fields
Fields of InvalidLoop
node: usizeShow fields
Fields of Format
msg: StringTrait Implementations
impl Debug for SteinlibError[src]
impl Debug for SteinlibError[src]impl Display for SteinlibError[src]
impl Display for SteinlibError[src]impl Error for SteinlibError[src]
impl Error for SteinlibError[src]fn cause(&self) -> Option<&dyn Error>[src]
fn cause(&self) -> Option<&dyn Error>[src]👎 Deprecated since 1.33.0:
replaced by Error::source, which can support downcasting
fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]
fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]The lower-level source of this error, if any. Read more
fn backtrace(&self) -> Option<&Backtrace>[src]
fn backtrace(&self) -> Option<&Backtrace>[src]🔬 This is a nightly-only experimental API. (
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
fn description(&self) -> &str1.0.0[src]
fn description(&self) -> &str1.0.0[src]👎 Deprecated since 1.42.0:
use the Display impl or to_string()
impl From<ParseError<LineCol>> for SteinlibError[src]
impl From<ParseError<LineCol>> for SteinlibError[src]Auto Trait Implementations
impl !RefUnwindSafe for SteinlibError
impl Send for SteinlibError
impl Sync for SteinlibError
impl Unpin for SteinlibError
impl !UnwindSafe for SteinlibError
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more