pub enum CFGError {
UndefinedVariableError {
name: String,
file_id: Option<FileID>,
file_location: FileLocation,
},
InvalidVariableNameError {
name: String,
file_id: Option<FileID>,
file_location: FileLocation,
},
ShadowingVariableWarning {
name: String,
primary_file_id: Option<FileID>,
primary_location: FileLocation,
secondary_file_id: Option<FileID>,
secondary_location: FileLocation,
},
ParameterNameCollisionError {
name: String,
file_id: Option<FileID>,
file_location: FileLocation,
},
}Expand description
Error enum for CFG generation errors.
Variants§
UndefinedVariableError
InvalidVariableNameError
ShadowingVariableWarning
ParameterNameCollisionError
Implementations§
Trait Implementations§
source§impl Error for CFGError
impl Error for CFGError
1.30.0 · 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()