1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
// Take a look at the license at the top of the repository in the LICENSE file.
use crate::translate::*;
// rustdoc-stripper-ignore-next
/// A value representing an interval of time, in microseconds.
#[doc(alias = "GTimeSpan")]
#[derive(Copy, Clone, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct TimeSpan(pub i64);
impl FromGlib<i64> for TimeSpan {
    unsafe fn from_glib(v: i64) -> TimeSpan {
        TimeSpan(v)
    }
}
impl IntoGlib for TimeSpan {
    type GlibType = i64;
    fn into_glib(self) -> i64 {
        self.0
    }
}
impl TimeSpan {
    // rustdoc-stripper-ignore-next
    /// Create a new timespan from microseconds.
    pub fn from_microseconds(v: i64) -> TimeSpan {
        TimeSpan(v)
    }
    // rustdoc-stripper-ignore-next
    /// Create a new timespan from milliseconds.
    pub fn from_milliseconds(v: i64) -> TimeSpan {
        TimeSpan(v * ffi::G_TIME_SPAN_MILLISECOND)
    }
    // rustdoc-stripper-ignore-next
    /// Create a new timespan from seconds.
    pub fn from_seconds(v: i64) -> TimeSpan {
        TimeSpan(v * ffi::G_TIME_SPAN_SECOND)
    }
    // rustdoc-stripper-ignore-next
    /// Create a new timespan from minutes.
    pub fn from_minutes(v: i64) -> TimeSpan {
        TimeSpan(v * ffi::G_TIME_SPAN_MINUTE)
    }
    // rustdoc-stripper-ignore-next
    /// Create a new timespan from hours.
    pub fn from_hours(v: i64) -> TimeSpan {
        TimeSpan(v * ffi::G_TIME_SPAN_HOUR)
    }
    // rustdoc-stripper-ignore-next
    /// Create a new timespan from days.
    pub fn from_days(v: i64) -> TimeSpan {
        TimeSpan(v * ffi::G_TIME_SPAN_DAY)
    }
    // rustdoc-stripper-ignore-next
    /// Return the full number of microseconds in this `TimeSpan`.
    pub fn as_microseconds(self) -> i64 {
        self.0
    }
    // rustdoc-stripper-ignore-next
    /// Return the full number of milliseconds in this `TimeSpan`.
    pub fn as_milliseconds(self) -> i64 {
        self.0 / ffi::G_TIME_SPAN_MILLISECOND
    }
    // rustdoc-stripper-ignore-next
    /// Return the full number of seconds in this `TimeSpan`.
    pub fn as_seconds(self) -> i64 {
        self.0 / ffi::G_TIME_SPAN_SECOND
    }
    // rustdoc-stripper-ignore-next
    /// Return the full number of minutes in this `TimeSpan`.
    pub fn as_minutes(self) -> i64 {
        self.0 / ffi::G_TIME_SPAN_MINUTE
    }
    // rustdoc-stripper-ignore-next
    /// Return the full number of hours in this `TimeSpan`.
    pub fn as_hours(self) -> i64 {
        self.0 / ffi::G_TIME_SPAN_HOUR
    }
    // rustdoc-stripper-ignore-next
    /// Return the full number of days in this `TimeSpan`.
    pub fn as_days(self) -> i64 {
        self.0 / ffi::G_TIME_SPAN_DAY
    }
}