pub struct GotoSpan {
pub target: String,
pub target_pos: LineCol,
}
Expand description
Components of a GOTO
or a GOSUB
statement.
Fields§
§target: String
Name of the label to jump to.
target_pos: LineCol
Position of the label.
Trait Implementations§
impl Eq for GotoSpan
impl StructuralPartialEq for GotoSpan
Auto Trait Implementations§
impl Freeze for GotoSpan
impl RefUnwindSafe for GotoSpan
impl Send for GotoSpan
impl Sync for GotoSpan
impl Unpin for GotoSpan
impl UnwindSafe for GotoSpan
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