Enum three::Layout [] [src]

pub enum Layout {
    SingleLine(Align),
    Wrap(Align),
}

Describes text alignment & wrapping. See gfx_glyph::Layout.

Variants

Renders a single line from left-to-right according to the inner alignment.

Renders multiple lines from left-to-right according to the inner alignment.

Trait Implementations

impl Debug for Layout
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Layout
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Layout
[src]

impl PartialEq for Layout
[src]

[src]

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

[src]

This method tests for !=.

impl Eq for Layout
[src]

impl Hash for Layout
[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 Default for Layout
[src]

[src]

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

impl From<Layout> for Layout<BuiltInLineBreaker>
[src]

[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Layout

impl Sync for Layout