[][src]Enum penrose::core::data_types::WinConfig

pub enum WinConfig {
    BorderPx(u32),
    Position(Region),
    StackAbove,
}

Config options for X windows (not all are currently implemented)

Variants

BorderPx(u32)

The border width in pixels

Position(Region)

Absolute size and position on the screen as a Region

StackAbove

Mark this window as stacking on top of its peers

Trait Implementations

impl Clone for WinConfig[src]

impl Copy for WinConfig[src]

impl Debug for WinConfig[src]

impl Eq for WinConfig[src]

impl Hash for WinConfig[src]

impl PartialEq<WinConfig> for WinConfig[src]

impl StructuralEq for WinConfig[src]

impl StructuralPartialEq for WinConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.