Struct me3_framework::overlay::widgets::text_edit::CCursorRange
source · [−]Expand description
A selected text range (could be a range of length zero).
The selection is based on character count (NOT byte count!).
Fields
primary: CCursor
When selecting with a mouse, this is where the mouse was released. When moving with e.g. shift+arrows, this is what moves. Note that the two ends can come in any order, and also be equal (no selection).
secondary: CCursor
When selecting with a mouse, this is where the mouse was first pressed. This part of the cursor does not move when shift is down.
Implementations
Trait Implementations
sourceimpl Clone for CCursorRange
impl Clone for CCursorRange
sourcefn clone(&self) -> CCursorRange
fn clone(&self) -> CCursorRange
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for CCursorRange
impl Debug for CCursorRange
sourceimpl Default for CCursorRange
impl Default for CCursorRange
sourcefn default() -> CCursorRange
fn default() -> CCursorRange
Returns the “default value” for a type. Read more
sourceimpl PartialEq<CCursorRange> for CCursorRange
impl PartialEq<CCursorRange> for CCursorRange
sourcefn eq(&self, other: &CCursorRange) -> bool
fn eq(&self, other: &CCursorRange) -> bool
impl Copy for CCursorRange
impl StructuralPartialEq for CCursorRange
Auto Trait Implementations
impl RefUnwindSafe for CCursorRange
impl Send for CCursorRange
impl Sync for CCursorRange
impl Unpin for CCursorRange
impl UnwindSafe for CCursorRange
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more