Struct nannou::ui::prelude::text::cursor::Index[][src]

pub struct Index {
    pub line: usize,
    pub char: usize,
}

An index representing the position of a cursor within some text.

Fields

The index of the line upon which the cursor is situated.

The index within all possible cursor positions for the line.

For example, for the line foo, a char of 1 would indicate the cursor's position as f|oo where | is the cursor.

Methods

impl Index
[src]

The cursor index of the beginning of the word (block of non-whitespace) before self.

If self is at the beginning of the line, call previous, which returns the last index position of the previous line, or None if it's the first line

If self points to whitespace, skip past that whitespace, then return the index of the start of the word that precedes the whitespace

If self is in the middle or end of a word, return the index of the start of that word

The cursor index of the end of the first word (block of non-whitespace) after self.

If self is at the end of the text, this returns None.

If self is at the end of a line other than the last, this returns the first index of the next line.

If self points to whitespace, skip past that whitespace, then return the index of the end of the word after the whitespace

If self is in the middle or start of a word, return the index of the end of that word

The cursor index that comes before self.

If self is at the beginning of the text, this returns None.

If self is at the beginning of a line other than the first, this returns the last index position of the previous line.

If self is a position other than the start of a line, it will return the position that is immediately to the left.

The cursor index that follows self.

If self is at the end of the text, this returns None.

If self is at the end of a line other than the last, this returns the first index of the next line.

If self is a position other than the end of a line, it will return the position that is immediately to the right.

Clamps self to the given lines.

If self would lie after the end of the last line, return the index at the end of the last line.

If line_infos is empty, returns cursor at line=0 char=0.

Trait Implementations

impl PartialOrd<Index> for Index
[src]

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Clone for Index
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Index
[src]

Formats the value using the given formatter. Read more

impl Ord for Index
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl Copy for Index
[src]

impl Eq for Index
[src]

impl PartialEq<Index> for Index
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Index

impl Sync for Index