pub enum SemanticError {
CouldNotInsertStruct,
SeqMapError(SeqMapError),
DuplicateTypeAlias(String),
CanOnlyUseStructForMemberFunctions,
ResolveNotStruct,
}
Variants§
CouldNotInsertStruct
SeqMapError(SeqMapError)
DuplicateTypeAlias(String)
CanOnlyUseStructForMemberFunctions
ResolveNotStruct
Trait Implementations§
Source§impl Debug for SemanticError
impl Debug for SemanticError
Source§impl From<SeqMapError> for SemanticError
impl From<SeqMapError> for SemanticError
Source§fn from(err: SeqMapError) -> Self
fn from(err: SeqMapError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SemanticError
impl RefUnwindSafe for SemanticError
impl Send for SemanticError
impl Sync for SemanticError
impl Unpin for SemanticError
impl UnwindSafe for SemanticError
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