pub struct LeanWorkerTacticInfo {
pub start_line: u32,
pub start_column: u32,
pub end_line: u32,
pub end_column: u32,
pub goals_before: Vec<String>,
pub goals_after: Vec<String>,
}Expand description
One tactic projection. Mirrors lean_rs_host::process::TacticInfoNode.
Fields§
§start_line: u32§start_column: u32§end_line: u32§end_column: u32§goals_before: Vec<String>§goals_after: Vec<String>Trait Implementations§
Source§impl Clone for LeanWorkerTacticInfo
impl Clone for LeanWorkerTacticInfo
Source§fn clone(&self) -> LeanWorkerTacticInfo
fn clone(&self) -> LeanWorkerTacticInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LeanWorkerTacticInfo
impl Debug for LeanWorkerTacticInfo
Source§impl<'de> Deserialize<'de> for LeanWorkerTacticInfo
impl<'de> Deserialize<'de> for LeanWorkerTacticInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for LeanWorkerTacticInfo
impl PartialEq for LeanWorkerTacticInfo
Source§fn eq(&self, other: &LeanWorkerTacticInfo) -> bool
fn eq(&self, other: &LeanWorkerTacticInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LeanWorkerTacticInfo
impl Serialize for LeanWorkerTacticInfo
impl Eq for LeanWorkerTacticInfo
impl StructuralPartialEq for LeanWorkerTacticInfo
Auto Trait Implementations§
impl Freeze for LeanWorkerTacticInfo
impl RefUnwindSafe for LeanWorkerTacticInfo
impl Send for LeanWorkerTacticInfo
impl Sync for LeanWorkerTacticInfo
impl Unpin for LeanWorkerTacticInfo
impl UnsafeUnpin for LeanWorkerTacticInfo
impl UnwindSafe for LeanWorkerTacticInfo
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