[][src]Struct qt_widgets::q_box_layout::Direction

#[repr(transparent)]
pub struct Direction(_);

This type is used to determine the direction of a box layout.

C++ enum: QBoxLayout::Direction.

C++ documentation:

This type is used to determine the direction of a box layout.

Methods

impl Direction[src]

pub fn to_int(&self) -> c_int[src]

impl Direction[src]

pub const LeftToRight: Direction[src]

Horizontal from left to right. (C++ enum variant: LeftToRight = 0)

pub const RightToLeft: Direction[src]

Horizontal from right to left. (C++ enum variant: RightToLeft = 1)

pub const TopToBottom: Direction[src]

Vertical from top to bottom. (C++ enum variant: TopToBottom = 2)

pub const BottomToTop: Direction[src]

Vertical from bottom to top. (C++ enum variant: BottomToTop = 3)

pub const Down: Direction[src]

C++ enum variant: Down = 2

pub const Up: Direction[src]

C++ enum variant: Up = 3

Trait Implementations

impl Eq for Direction[src]

impl Clone for Direction[src]

impl PartialEq<Direction> for Direction[src]

impl From<i32> for Direction[src]

impl From<Direction> for c_int[src]

impl Copy for Direction[src]

impl Debug for Direction[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

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

impl<T, U> CastInto<U> for T where
    U: CastFrom<T>, 
[src]