[][src]Enum fontdue::layout::WrapStyle

pub enum WrapStyle {
    Word,
    Letter,
}

Wrap style is a hint for how strings of text should be wrapped to the next line. Line wrapping can happen when the max width/height is reached.

Variants

Word

Word will break lines by the Unicode line breaking algorithm (Standard Annex #14) This will generally break lines where you expect them to be broken at and will preserve words.

Letter

Letter will not preserve words, breaking into a new line after the nearest letter.

Trait Implementations

impl Clone for WrapStyle[src]

impl Copy for WrapStyle[src]

impl PartialEq<WrapStyle> for WrapStyle[src]

impl StructuralPartialEq for WrapStyle[src]

Auto Trait Implementations

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.