Struct egui::text_selection::PCursorRange
source · pub struct PCursorRange {
pub primary: PCursor,
pub secondary: PCursor,
}
Fields§
§primary: PCursor
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: PCursor
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.
Trait Implementations§
source§impl Clone for PCursorRange
impl Clone for PCursorRange
source§fn clone(&self) -> PCursorRange
fn clone(&self) -> PCursorRange
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for PCursorRange
impl Debug for PCursorRange
source§impl Default for PCursorRange
impl Default for PCursorRange
source§fn default() -> PCursorRange
fn default() -> PCursorRange
Returns the “default value” for a type. Read more
source§impl PartialEq for PCursorRange
impl PartialEq for PCursorRange
source§fn eq(&self, other: &PCursorRange) -> bool
fn eq(&self, other: &PCursorRange) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for PCursorRange
impl StructuralPartialEq for PCursorRange
Auto Trait Implementations§
impl RefUnwindSafe for PCursorRange
impl Send for PCursorRange
impl Sync for PCursorRange
impl Unpin for PCursorRange
impl UnwindSafe for PCursorRange
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more