Enum druid_shell::text::Movement [−][src]
#[non_exhaustive]
pub enum Movement {
Grapheme(Direction),
Word(Direction),
Line(Direction),
ParagraphStart,
ParagraphEnd,
Vertical(VerticalMovement),
}
Expand description
Indicates a movement that transforms a particular text position in a document.
These movements transform only single indices — not selections.
You’ll note that a lot of these operations are idempotent, but you can get
around this by first sending a Grapheme
movement. If for instance, you
want a ParagraphStart
that is not idempotent, you can first send
Movement::Grapheme(Direction::Upstream)
, and then follow it with
ParagraphStart
.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Grapheme(Direction)
A movement that stops when it reaches an extended grapheme cluster boundary.
This movement is achieved on most systems by pressing the left and right arrow keys. For more information on grapheme clusters, see Unicode Text Segmentation.
Tuple Fields of Grapheme
0: Direction
Word(Direction)
A movement that stops when it reaches a word boundary.
This movement is achieved on most systems by pressing the left and right arrow keys while holding control. For more information on words, see Unicode Text Segmentation.
Tuple Fields of Word
0: Direction
Line(Direction)
A movement that stops when it reaches a soft line break.
This movement is achieved on macOS by pressing the left and right arrow
keys while holding command. Line
should be idempotent: if the
position is already at the end of a soft-wrapped line, this movement
should never push it onto another soft-wrapped line.
In order to implement this properly, your text positions should remember their affinity.
Tuple Fields of Line
0: Direction
An upstream movement that stops when it reaches a hard line break.
ParagraphStart
should be idempotent: if the position is already at the
start of a hard-wrapped line, this movement should never push it onto
the previous line.
A downstream movement that stops when it reaches a hard line break.
ParagraphEnd
should be idempotent: if the position is already at the
end of a hard-wrapped line, this movement should never push it onto the
next line.
Vertical(VerticalMovement)
A vertical movement, see VerticalMovement
for more details.
Tuple Fields of Vertical
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Movement
impl UnwindSafe for Movement
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span
, returning an
Instrumented
wrapper. Read more
pub fn round_from(x: T) -> T
pub fn round_from(x: T) -> T
Performs the conversion.
pub fn round_into(self) -> U
pub fn round_into(self) -> U
Performs the conversion.
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more