[][src]Struct qt_widgets::q_progress_bar::Direction

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

Specifies the reading direction of the text for vertical progress bars.

C++ enum: QProgressBar::Direction.

C++ documentation:

Specifies the reading direction of the text for vertical progress bars.

Note that whether or not the text is drawn is dependent on the style. Currently CleanLooks and Plastique draw the text. Mac, Windows and WindowsXP style do not.

This enum was introduced or modified in Qt 4.1.

See also textDirection.

Methods

impl Direction[src]

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

impl Direction[src]

pub const TopToBottom: Direction[src]

The text is rotated 90 degrees clockwise. (C++ enum variant: TopToBottom = 0)

pub const BottomToTop: Direction[src]

The text is rotated 90 degrees counter-clockwise. (C++ enum variant: BottomToTop = 1)

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]