pub enum SvdError {
Build(BuildError),
Name(NameError),
Device(Error),
Peripheral(Error),
Cluster(Error),
Register(Error),
Field(Error),
BitRange(Error),
EnumeratedValue(Error),
EnumeratedValues(Error),
RegisterProperties(Error),
}Expand description
Errors that can occur during building.
Variants§
Build(BuildError)
Error related to a builder
Name(NameError)
Name check error
Device(Error)
Device error
Peripheral(Error)
Peripheral error
Cluster(Error)
Cluster error
Register(Error)
Register error
Field(Error)
Field error
BitRange(Error)
BitRange error
EnumeratedValue(Error)
EnumeratedValue error
EnumeratedValues(Error)
EnumeratedValues error
RegisterProperties(Error)
RegisterProperties error
Trait Implementations§
source§impl Error for SvdError
impl Error for SvdError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<BuildError> for SvdError
impl From<BuildError> for SvdError
source§fn from(source: BuildError) -> Self
fn from(source: BuildError) -> Self
Converts to this type from the input type.