[][src]Struct qt_core::q_time_line::Direction

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

This enum describes the direction of the timeline when in Running state.

C++ enum: QTimeLine::Direction.

C++ documentation:

This enum describes the direction of the timeline when in Running state.

See also setDirection().

Methods

impl Direction[src]

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

impl Direction[src]

pub const Forward: Direction[src]

The current time of the timeline increases with time (i.e., moves from 0 and towards the end / duration). (C++ enum variant: Forward = 0)

pub const Backward: Direction[src]

The current time of the timeline decreases with time (i.e., moves from the end / duration and towards 0). (C++ enum variant: Backward = 1)

Trait Implementations

impl From<i32> for Direction[src]

impl From<Direction> for c_int[src]

impl Clone for Direction[src]

impl Copy for Direction[src]

impl Eq for Direction[src]

impl PartialEq<Direction> for Direction[src]

impl Debug for Direction[src]

Auto Trait Implementations

Blanket Implementations

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.

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]