pub struct ExplainPosition {
pub line: u32,
pub character: u32,
}Expand description
Minimal position type for explain requests (row/column, 0-based).
Fields§
§line: u32§character: u32Trait Implementations§
Source§impl Clone for ExplainPosition
impl Clone for ExplainPosition
Source§fn clone(&self) -> ExplainPosition
fn clone(&self) -> ExplainPosition
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 ExplainPosition
impl Debug for ExplainPosition
Source§impl<'de> Deserialize<'de> for ExplainPosition
impl<'de> Deserialize<'de> for ExplainPosition
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
Auto Trait Implementations§
impl Freeze for ExplainPosition
impl RefUnwindSafe for ExplainPosition
impl Send for ExplainPosition
impl Sync for ExplainPosition
impl Unpin for ExplainPosition
impl UnsafeUnpin for ExplainPosition
impl UnwindSafe for ExplainPosition
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