[]Enum gfx_glyph::LineBreak

pub enum LineBreak {
    Soft(usize),
    Hard(usize),
}

Indicator that a character is a line break, soft or hard. Includes the offset (byte-index) position.

Variants

Soft(usize)

Soft line break (offset).

Hard(usize)

Hard line break (offset).

Methods

impl LineBreak

pub fn offset(&self) -> usize

Returns the offset of the line break, the index after the breaking character.

Trait Implementations

impl Copy for LineBreak

impl Clone for LineBreak

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for LineBreak

impl Debug for LineBreak

impl Hash for LineBreak

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl PartialEq<LineBreak> for LineBreak

Auto Trait Implementations

impl Send for LineBreak

impl Sync for LineBreak

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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