Struct accesskit::TextSelection
source · pub struct TextSelection {
pub anchor: TextPosition,
pub focus: TextPosition,
}
Fields§
§anchor: TextPosition
The position where the selection started, and which does not change
as the selection is expanded or contracted. If there is no selection
but only a caret, this must be equal to the value of TextSelection::focus
.
This is also known as a degenerate selection.
focus: TextPosition
The active end of the selection, which changes as the selection is expanded or contracted, or the position of the caret if there is no selection.
Trait Implementations§
source§impl Clone for TextSelection
impl Clone for TextSelection
source§fn clone(&self) -> TextSelection
fn clone(&self) -> TextSelection
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 TextSelection
impl Debug for TextSelection
source§impl PartialEq for TextSelection
impl PartialEq for TextSelection
impl Copy for TextSelection
impl Eq for TextSelection
impl StructuralPartialEq for TextSelection
Auto Trait Implementations§
impl Freeze for TextSelection
impl RefUnwindSafe for TextSelection
impl Send for TextSelection
impl Sync for TextSelection
impl Unpin for TextSelection
impl UnwindSafe for TextSelection
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)