Struct gstreamer::DateTime[][src]

pub struct DateTime(_);

Implementations

impl DateTime[src]

pub fn new(
    tzoffset: f32,
    year: i32,
    month: i32,
    day: i32,
    hour: i32,
    minute: i32,
    seconds: f64
) -> Result<DateTime, BoolError>
[src]

pub fn from_g_date_time(dt: &DateTime) -> Result<DateTime, BoolError>[src]

pub fn from_iso8601_string(string: &str) -> Result<DateTime, BoolError>[src]

pub fn from_unix_epoch_local_time(secs: i64) -> DateTime[src]

pub fn from_unix_epoch_local_time_usecs(usecs: i64) -> DateTime[src]

pub fn from_unix_epoch_utc(secs: i64) -> DateTime[src]

pub fn from_unix_epoch_utc_usecs(usecs: i64) -> DateTime[src]

pub fn new_local_time(
    year: i32,
    month: i32,
    day: i32,
    hour: i32,
    minute: i32,
    seconds: f64
) -> DateTime
[src]

pub fn new_now_local_time() -> DateTime[src]

pub fn new_now_utc() -> DateTime[src]

pub fn new_y(year: i32) -> Result<DateTime, BoolError>[src]

pub fn new_ym(year: i32, month: i32) -> Result<DateTime, BoolError>[src]

pub fn new_ymd(year: i32, month: i32, day: i32) -> Result<DateTime, BoolError>[src]

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

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

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

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

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

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

pub fn get_time_zone_offset(&self) -> f32[src]

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

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

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

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

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

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

pub fn to_g_date_time(&self) -> Result<DateTime, BoolError>[src]

pub fn to_iso8601_string(&self) -> Result<GString, BoolError>[src]

impl DateTime[src]

Trait Implementations

impl Clone for DateTime[src]

impl Debug for DateTime[src]

impl<'de> Deserialize<'de> for DateTime[src]

impl Display for DateTime[src]

impl PartialEq<DateTime> for DateTime[src]

impl PartialOrd<DateTime> for DateTime[src]

impl Send for DateTime[src]

impl<'a> Serialize for DateTime[src]

impl StaticType for DateTime[src]

impl Sync for DateTime[src]

impl<'a> TryFrom<&'a DateTime> for DateTime[src]

type Error = BoolError

The type returned in the event of a conversion error.

impl TryFrom<DateTime> for DateTime[src]

type Error = BoolError

The type returned in the event of a conversion error.

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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> ToSendValue for T where
    T: ToValue + SetValue + Send + ?Sized
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToValue for T where
    T: SetValue + ?Sized
[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.