pub struct SelectableTextInteractiveSpanBounds {
pub range: Range<usize>,
pub tag: Arc<str>,
pub bounds_local: Rect,
}Fields§
§range: Range<usize>§tag: Arc<str>§bounds_local: RectSpan bounds in local widget coordinates (relative to the widget’s bounds origin).
Trait Implementations§
Source§impl Clone for SelectableTextInteractiveSpanBounds
impl Clone for SelectableTextInteractiveSpanBounds
Source§fn clone(&self) -> SelectableTextInteractiveSpanBounds
fn clone(&self) -> SelectableTextInteractiveSpanBounds
Returns a duplicate 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 PartialEq for SelectableTextInteractiveSpanBounds
impl PartialEq for SelectableTextInteractiveSpanBounds
Source§fn eq(&self, other: &SelectableTextInteractiveSpanBounds) -> bool
fn eq(&self, other: &SelectableTextInteractiveSpanBounds) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SelectableTextInteractiveSpanBounds
Auto Trait Implementations§
impl Freeze for SelectableTextInteractiveSpanBounds
impl RefUnwindSafe for SelectableTextInteractiveSpanBounds
impl Send for SelectableTextInteractiveSpanBounds
impl Sync for SelectableTextInteractiveSpanBounds
impl Unpin for SelectableTextInteractiveSpanBounds
impl UnsafeUnpin for SelectableTextInteractiveSpanBounds
impl UnwindSafe for SelectableTextInteractiveSpanBounds
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