pub enum Error {
InvalidData(String),
Signal(String),
Message(String),
Dbc(String),
Version(String),
Nodes(String),
ParseError(ParseError),
}Expand description
Error type for DBC parsing and validation operations.
This enum represents all possible errors that can occur when working with DBC files.
Most variants require the alloc feature to be enabled.
Variants§
InvalidData(String)
Invalid data error (e.g., parse failures, invalid formats).
Signal(String)
Signal-related error (e.g., invalid signal definition).
Message(String)
Message-related error (e.g., invalid message definition).
Dbc(String)
DBC file-level error (e.g., missing required sections).
Version(String)
Version parsing error.
Nodes(String)
Node-related error (e.g., duplicate node names).
ParseError(ParseError)
Low-level parse error (available in no_std builds).
Trait Implementations§
Source§impl Error for Error
Available on crate feature std and crate feature alloc and non-crate feature kernel only.
impl Error for Error
Available on crate feature
std and crate feature alloc and non-crate feature kernel only.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<ParseIntError> for Error
Available on crate feature alloc and non-crate feature kernel only.
impl From<ParseIntError> for Error
Available on crate feature
alloc and non-crate feature kernel only.Source§fn from(err: ParseIntError) -> Self
fn from(err: ParseIntError) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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