pub enum SemanticErrorKind {
UndefinedReference,
DuplicateDefinition,
TypeMismatch {
expected: String,
found: String,
},
CircularDependency,
InvalidValue,
MissingRequired,
DeprecatedFeature,
}
Variants§
UndefinedReference
DuplicateDefinition
TypeMismatch
CircularDependency
InvalidValue
MissingRequired
DeprecatedFeature
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SemanticErrorKind
impl RefUnwindSafe for SemanticErrorKind
impl Send for SemanticErrorKind
impl Sync for SemanticErrorKind
impl Unpin for SemanticErrorKind
impl UnwindSafe for SemanticErrorKind
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