Enum gfx_glyph::VerticalAlign[][src]

pub enum VerticalAlign {
    Top,
    Center,
    Bottom,
}

Describes vertical alignment preference for positioning & bounds. Currently a placeholder for future functionality.

Variants

Characters/bounds start underneath the render position and progress downwards.

Characters/bounds center at the render position and progress outward equally.

Characters/bounds start above the render position and progress upward.

Trait Implementations

impl Debug for VerticalAlign
[src]

Formats the value using the given formatter. Read more

impl Clone for VerticalAlign
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for VerticalAlign
[src]

impl PartialEq for VerticalAlign
[src]

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

This method tests for !=.

impl Eq for VerticalAlign
[src]

impl Hash for VerticalAlign
[src]

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

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

Auto Trait Implementations