[][src]Struct qt_widgets::q_stacked_layout::StackingMode

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

This enum specifies how the layout handles its child widgets regarding their visibility.

C++ enum: QStackedLayout::StackingMode.

C++ documentation:

This enum specifies how the layout handles its child widgets regarding their visibility.

This enum was introduced or modified in Qt 4.4.

Methods

impl StackingMode[src]

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

impl StackingMode[src]

pub const StackOne: StackingMode[src]

Only the current widget is visible. This is the default. (C++ enum variant: StackOne = 0)

pub const StackAll: StackingMode[src]

All widgets are visible. The current widget is merely raised. (C++ enum variant: StackAll = 1)

Trait Implementations

impl Eq for StackingMode[src]

impl Clone for StackingMode[src]

impl PartialEq<StackingMode> for StackingMode[src]

impl From<i32> for StackingMode[src]

impl From<StackingMode> for c_int[src]

impl Copy for StackingMode[src]

impl Debug for StackingMode[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]