Enum cognitive_qualia::enums::Direction [] [src]

pub enum Direction {
    None,
    North,
    East,
    South,
    West,
    Backward,
    Forward,
    Begin,
    End,
    Up,
    Workspace,
}

Enum representing directions on screen, in time and between frames.

Variants

Dummy; point nowhere.

North; up; above.

East; right.

South; down; below.

West; left.

Back in time; most recently used.

Forward in time; the oldest used.

Begin; start; head.

End; finish; tail.

Trunk; parent; up in frame hierarchy.

Workspace.

Methods

impl Direction
[src]

Reverse the direction.

Returns true if direction in planar, false otherwise.

Trait Implementations

impl Clone for Direction
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Direction
[src]

impl Debug for Direction
[src]

Formats the value using the given formatter.

impl PartialEq for Direction
[src]

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

This method tests for !=.