Enum cognitive_frames::Mobility [] [src]

pub enum Mobility {
    Floating,
    Anchored,
    Docked,
}

Defines what spatial operations are allowed in the frame.

Variants

Frame can be moved and resized.

Frame can only be resized.

Frame cannot be moved nor resized.

Methods

impl Mobility
[src]

Returns true if frame can be moved or resized.

Returns true if frame can be resized but not moved.

Returns true if frame cannot be resized nor moved.

Trait Implementations

impl Clone for Mobility
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Mobility
[src]

impl Debug for Mobility
[src]

Formats the value using the given formatter.

impl PartialEq for Mobility
[src]

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

This method tests for !=.