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