pub struct LeanWorkerTermInfo {
pub start_line: u32,
pub start_column: u32,
pub end_line: u32,
pub end_column: u32,
pub expr_str: String,
pub type_str: String,
pub expected_type_str: Option<String>,
}Expand description
One term projection. Mirrors lean_rs_host::process::TermInfoNode.
Fields§
§start_line: u32§start_column: u32§end_line: u32§end_column: u32§expr_str: String§type_str: String§expected_type_str: Option<String>Trait Implementations§
Source§impl Clone for LeanWorkerTermInfo
impl Clone for LeanWorkerTermInfo
Source§fn clone(&self) -> LeanWorkerTermInfo
fn clone(&self) -> LeanWorkerTermInfo
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 LeanWorkerTermInfo
impl Debug for LeanWorkerTermInfo
Source§impl<'de> Deserialize<'de> for LeanWorkerTermInfo
impl<'de> Deserialize<'de> for LeanWorkerTermInfo
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 LeanWorkerTermInfo
impl PartialEq for LeanWorkerTermInfo
Source§fn eq(&self, other: &LeanWorkerTermInfo) -> bool
fn eq(&self, other: &LeanWorkerTermInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LeanWorkerTermInfo
impl Serialize for LeanWorkerTermInfo
impl Eq for LeanWorkerTermInfo
impl StructuralPartialEq for LeanWorkerTermInfo
Auto Trait Implementations§
impl Freeze for LeanWorkerTermInfo
impl RefUnwindSafe for LeanWorkerTermInfo
impl Send for LeanWorkerTermInfo
impl Sync for LeanWorkerTermInfo
impl Unpin for LeanWorkerTermInfo
impl UnsafeUnpin for LeanWorkerTermInfo
impl UnwindSafe for LeanWorkerTermInfo
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