pub struct TacticLocation {
pub line: usize,
pub column: usize,
pub name: String,
}Expand description
Location information for IDE support
Fields§
§line: usizeLine number (1-based)
column: usizeColumn number (1-based)
name: StringTactic name
Trait Implementations§
Source§impl Clone for TacticLocation
impl Clone for TacticLocation
Source§fn clone(&self) -> TacticLocation
fn clone(&self) -> TacticLocation
Returns a duplicate 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 TacticLocation
impl Debug for TacticLocation
Source§impl PartialEq for TacticLocation
impl PartialEq for TacticLocation
impl Eq for TacticLocation
impl StructuralPartialEq for TacticLocation
Auto Trait Implementations§
impl Freeze for TacticLocation
impl RefUnwindSafe for TacticLocation
impl Send for TacticLocation
impl Sync for TacticLocation
impl Unpin for TacticLocation
impl UnsafeUnpin for TacticLocation
impl UnwindSafe for TacticLocation
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