Struct epaint::text::text_layout::RowBreakCandidates

source ·
struct RowBreakCandidates {
    space: Option<usize>,
    cjk: Option<usize>,
    pre_cjk: Option<usize>,
    dash: Option<usize>,
    punctuation: Option<usize>,
    any: Option<usize>,
}
Expand description

Keeps track of good places to break a long row of text. Will focus primarily on spaces, secondarily on things like -

Fields§

§space: Option<usize>

Breaking at or other whitespace is always the primary candidate.

§cjk: Option<usize>

Logograms (single character representing a whole word) or kana (Japanese hiragana and katakana) are good candidates for line break.

§pre_cjk: Option<usize>

Breaking anywhere before a CJK character is acceptable too.

§dash: Option<usize>

Breaking at a dash is a super- good idea.

§punctuation: Option<usize>

This is nicer for things like URLs, e.g. www. example.com.

§any: Option<usize>

Breaking after just random character is some times necessary.

Implementations§

source§

impl RowBreakCandidates

source

fn add(&mut self, index: usize, glyphs: &[Glyph])

source

fn word_boundary(&self) -> Option<usize>

source

fn has_good_candidate(&self, break_anywhere: bool) -> bool

source

fn get(&self, break_anywhere: bool) -> Option<usize>

source

fn forget_before_idx(&mut self, index: usize)

Trait Implementations§

source§

impl Clone for RowBreakCandidates

source§

fn clone(&self) -> RowBreakCandidates

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Default for RowBreakCandidates

source§

fn default() -> RowBreakCandidates

Returns the “default value” for a type. Read more
source§

impl Copy for RowBreakCandidates

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.