Struct lsp_types::Position [−][src]
Expand description
Position in a text document expressed as zero-based line and character offset. A position is between two characters like an ‘insert’ cursor in a editor.
Fields
line: u32Line position in a document (zero-based).
character: u32Character offset on a line in a document (zero-based). Assuming that
the line is represented as a string, the character value represents
the gap between the character and character + 1.
If the character value is greater than the line length it defaults back to the line length.
Implementations
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]Deserialize this value from the given Serde deserializer. Read more
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for Positionimpl UnwindSafe for PositionBlanket Implementations
Mutably borrows from an owned value. Read more