Struct languageserver_types::Position [−][src]
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: u64
Line position in a document (zero-based).
character: u64
Character offset on a line in a document (zero-based).
Methods
impl Position[src]
impl PositionTrait Implementations
impl Debug for Position[src]
impl Debug for Positionfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Eq for Position[src]
impl Eq for Positionimpl PartialEq for Position[src]
impl PartialEq for Positionfn eq(&self, other: &Position) -> bool[src]
fn eq(&self, other: &Position) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Position) -> bool[src]
fn ne(&self, other: &Position) -> boolThis method tests for !=.
impl Ord for Position[src]
impl Ord for Positionfn cmp(&self, other: &Position) -> Ordering[src]
fn cmp(&self, other: &Position) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl PartialOrd for Position[src]
impl PartialOrd for Positionfn partial_cmp(&self, other: &Position) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &Position) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Position) -> bool[src]
fn lt(&self, other: &Position) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Position) -> bool[src]
fn le(&self, other: &Position) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Position) -> bool[src]
fn gt(&self, other: &Position) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Position) -> bool[src]
fn ge(&self, other: &Position) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Copy for Position[src]
impl Copy for Positionimpl Clone for Position[src]
impl Clone for Positionfn clone(&self) -> Position[src]
fn clone(&self) -> PositionReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Default for Position[src]
impl Default for Position