Enum conrod::TextWrap [] [src]

pub enum TextWrap {
    Character,
    Whitespace,
}

The way in which text should wrap around the width.

Variants

Character

Wrap at the first character that exceeds the width.

Whitespace

Wrap at the first word that exceeds the width.

Trait Implementations

impl PartialEq for Wrap
[src]

fn eq(&self, __arg_0: &Wrap) -> bool

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

fn ne(&self, other: &Rhs) -> bool
1.0.0

This method tests for !=.

impl Debug for Wrap
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl Clone for Wrap
[src]

fn clone(&self) -> Wrap

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Copy for Wrap
[src]