Struct qmetaobject::QTime[][src]

#[repr(C)]
pub struct QTime { /* fields omitted */ }

Wrapper around QTime class.

Implementations

impl QTime[src]

pub fn from_h_m_s_ms(h: i32, m: i32, s: Option<i32>, ms: Option<i32>) -> QTime[src]

Wrapper around QTime(int h, int m, int s = 0, int ms = 0) constructor.

Wrapper-specific

Default arguments converted to Options.

pub fn get_hour(&self) -> i32[src]

Wrapper around QTime::hour() method.

pub fn get_minute(&self) -> i32[src]

Wrapper around QTime::minute() method.

pub fn get_second(&self) -> i32[src]

Wrapper around QTime::second() method.

pub fn get_msec(&self) -> i32[src]

Wrapper around QTime::msec() method.

pub fn get_h_m_s_ms(&self) -> (i32, i32, i32, i32)[src]

Convenience function for obtaining the hour, minute, second and millisecond components.

pub fn is_valid(&self) -> bool[src]

Wrapper around QTime::isValid() method.

Trait Implementations

impl Clone for QTime[src]

impl Copy for QTime[src]

impl Default for QTime[src]

impl Eq for QTime[src]

impl From<QTime> for QVariant[src]

pub fn from(a: QTime) -> QVariant[src]

Wrapper around QVariant(const QTime &) constructor.

impl Ord for QTime[src]

impl PartialEq<QTime> for QTime[src]

impl PartialOrd<QTime> for QTime[src]

impl QMetaType for QTime[src]

impl StructuralEq for QTime[src]

Auto Trait Implementations

impl RefUnwindSafe for QTime

impl Send for QTime

impl Sync for QTime

impl Unpin for QTime

impl UnwindSafe for QTime

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> PropertyType for T where
    T: QMetaType
[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.