Enum gfx_glyph::BuiltInLineBreaker [] [src]

pub enum BuiltInLineBreaker {
    UnicodeLineBreaker,
    AnyCharLineBreaker,
}

Variants

LineBreaker that follows Unicode Standard Annex #14. That effectively means it wraps words in a way that should work for most cases.

LineBreaker that soft breaks on any character, and hard breaks similarly to UnicodeLineBreaker.

Trait Implementations

impl Debug for BuiltInLineBreaker
[src]

[src]

Formats the value using the given formatter.

impl Clone for BuiltInLineBreaker
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for BuiltInLineBreaker
[src]

impl Hash for BuiltInLineBreaker
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

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

impl PartialEq for BuiltInLineBreaker
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

impl Eq for BuiltInLineBreaker
[src]

impl Default for BuiltInLineBreaker
[src]

[src]

Returns the "default value" for a type. Read more

impl LineBreaker for BuiltInLineBreaker
[src]

[src]