Enum conrod::Corner [] [src]

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

Either of the four corners of a Rect.

Variants

The top left corner of a Rect.

The top right corner of a Rect.

The bottom left corner of a Rect.

The bottom right corner of a Rect.

Trait Implementations

impl Copy for Corner
[src]

impl Clone for Corner
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Corner
[src]

Formats the value using the given formatter.

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