pub enum CompilerWarning {
StateOverwrite {
position: ErrorPosition,
state: String,
value_from: bool,
},
}
Variants§
StateOverwrite
Warning for when an instruction overwrites another
Trait Implementations§
Source§impl Clone for CompilerWarning
impl Clone for CompilerWarning
Source§fn clone(&self) -> CompilerWarning
fn clone(&self) -> CompilerWarning
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CompilerWarning
impl Debug for CompilerWarning
Source§impl PartialEq for CompilerWarning
impl PartialEq for CompilerWarning
impl Eq for CompilerWarning
impl StructuralPartialEq for CompilerWarning
Auto Trait Implementations§
impl Freeze for CompilerWarning
impl RefUnwindSafe for CompilerWarning
impl Send for CompilerWarning
impl Sync for CompilerWarning
impl Unpin for CompilerWarning
impl UnwindSafe for CompilerWarning
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