[][src]Struct egui::paint::CCursor

pub struct CCursor {
    pub index: usize,
    pub prefer_next_row: bool,
}

Character cursor

Fields

index: usize

Character offset (NOT byte offset!).

prefer_next_row: bool

If this cursors sits right at the border of a wrapped row break (NOT paragraph break) do we prefer the next row? This is almost always what you want, except for when explicitly clicking the end of a row or pressing the end key.

Implementations

impl CCursor[src]

pub fn new(index: usize) -> Self[src]

Trait Implementations

impl Add<usize> for CCursor[src]

type Output = CCursor

The resulting type after applying the + operator.

impl Clone for CCursor[src]

impl Copy for CCursor[src]

impl Debug for CCursor[src]

impl Default for CCursor[src]

impl PartialEq<CCursor> for CCursor[src]

Two CCursors are considered equal if they refer to the same character boundary, even if one prefers the start of the next row.

impl Sub<usize> for CCursor[src]

type Output = CCursor

The resulting type after applying the - operator.

Auto Trait Implementations

impl RefUnwindSafe for CCursor

impl Send for CCursor

impl Sync for CCursor

impl Unpin for CCursor

impl UnwindSafe for CCursor

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.