Enum conrod::Corner [] [src]

pub enum Corner {
    TopLeft,
    TopRight,
    BottomLeft,
    BottomRight,
}

A corner of a rectangle.

Variants

TopLeft

The top left quarter of a rectangle's area.

TopRight

The top right quarter of a rectangle's area.

BottomLeft

The bottom left quarter of a rectangle's area.

BottomRight

The bottom right quarter of a rectangle's area.

Trait Implementations

impl Clone for Corner
[src]

fn clone(&self) -> Corner

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 Corner
[src]