Struct gmime::DateTime [−]
pub struct DateTime(_);
Methods
impl DateTime
impl DateTimepub fn new(
tz: &TimeZone,
year: i32,
month: i32,
day: i32,
hour: i32,
minute: i32,
seconds: f64
) -> DateTime
pub fn new(
tz: &TimeZone,
year: i32,
month: i32,
day: i32,
hour: i32,
minute: i32,
seconds: f64
) -> DateTimepub fn new_from_unix_local(t: i64) -> DateTime
pub fn new_from_unix_local(t: i64) -> DateTimepub fn new_from_unix_utc(t: i64) -> DateTime
pub fn new_from_unix_utc(t: i64) -> DateTimepub fn new_local(
year: i32,
month: i32,
day: i32,
hour: i32,
minute: i32,
seconds: f64
) -> DateTime
pub fn new_local(
year: i32,
month: i32,
day: i32,
hour: i32,
minute: i32,
seconds: f64
) -> DateTimepub fn new_now(tz: &TimeZone) -> DateTime
pub fn new_now(tz: &TimeZone) -> DateTimepub fn new_now_local() -> DateTime
pub fn new_now_local() -> DateTimepub fn new_now_utc() -> DateTime
pub fn new_now_utc() -> DateTimepub fn new_utc(
year: i32,
month: i32,
day: i32,
hour: i32,
minute: i32,
seconds: f64
) -> DateTime
pub fn new_utc(
year: i32,
month: i32,
day: i32,
hour: i32,
minute: i32,
seconds: f64
) -> DateTimepub fn add(&self, timespan: i64) -> Option<DateTime>
pub fn add(&self, timespan: i64) -> Option<DateTime>pub fn add_days(&self, days: i32) -> Option<DateTime>
pub fn add_days(&self, days: i32) -> Option<DateTime>pub fn add_full(
&self,
years: i32,
months: i32,
days: i32,
hours: i32,
minutes: i32,
seconds: f64
) -> Option<DateTime>
pub fn add_full(
&self,
years: i32,
months: i32,
days: i32,
hours: i32,
minutes: i32,
seconds: f64
) -> Option<DateTime>pub fn add_hours(&self, hours: i32) -> Option<DateTime>
pub fn add_hours(&self, hours: i32) -> Option<DateTime>pub fn add_minutes(&self, minutes: i32) -> Option<DateTime>
pub fn add_minutes(&self, minutes: i32) -> Option<DateTime>pub fn add_months(&self, months: i32) -> Option<DateTime>
pub fn add_months(&self, months: i32) -> Option<DateTime>pub fn add_seconds(&self, seconds: f64) -> Option<DateTime>
pub fn add_seconds(&self, seconds: f64) -> Option<DateTime>pub fn add_weeks(&self, weeks: i32) -> Option<DateTime>
pub fn add_weeks(&self, weeks: i32) -> Option<DateTime>pub fn add_years(&self, years: i32) -> Option<DateTime>
pub fn add_years(&self, years: i32) -> Option<DateTime>pub fn difference(&self, begin: &DateTime) -> i64
pub fn difference(&self, begin: &DateTime) -> i64pub fn format(&self, format: &str) -> Option<String>
pub fn format(&self, format: &str) -> Option<String>pub fn get_day_of_month(&self) -> i32
pub fn get_day_of_month(&self) -> i32pub fn get_day_of_week(&self) -> i32
pub fn get_day_of_week(&self) -> i32pub fn get_day_of_year(&self) -> i32
pub fn get_day_of_year(&self) -> i32pub fn get_hour(&self) -> i32
pub fn get_hour(&self) -> i32pub fn get_microsecond(&self) -> i32
pub fn get_microsecond(&self) -> i32pub fn get_minute(&self) -> i32
pub fn get_minute(&self) -> i32pub fn get_month(&self) -> i32
pub fn get_month(&self) -> i32pub fn get_second(&self) -> i32
pub fn get_second(&self) -> i32pub fn get_seconds(&self) -> f64
pub fn get_seconds(&self) -> f64pub fn get_timezone_abbreviation(&self) -> Option<String>
pub fn get_timezone_abbreviation(&self) -> Option<String>pub fn get_utc_offset(&self) -> i64
pub fn get_utc_offset(&self) -> i64pub fn get_week_numbering_year(&self) -> i32
pub fn get_week_numbering_year(&self) -> i32pub fn get_week_of_year(&self) -> i32
pub fn get_week_of_year(&self) -> i32pub fn get_year(&self) -> i32
pub fn get_year(&self) -> i32pub fn get_ymd(&self) -> (i32, i32, i32)
pub fn get_ymd(&self) -> (i32, i32, i32)pub fn is_daylight_savings(&self) -> bool
pub fn is_daylight_savings(&self) -> boolpub fn to_local(&self) -> Option<DateTime>
pub fn to_local(&self) -> Option<DateTime>pub fn to_timezone(&self, tz: &TimeZone) -> Option<DateTime>
pub fn to_timezone(&self, tz: &TimeZone) -> Option<DateTime>pub fn to_unix(&self) -> i64
pub fn to_unix(&self) -> i64pub fn to_utc(&self) -> Option<DateTime>
pub fn to_utc(&self) -> Option<DateTime>impl DateTime
impl DateTimeTrait Implementations
impl PartialEq<DateTime> for DateTime
impl PartialEq<DateTime> for DateTimefn eq(&self, other: &DateTime) -> bool
fn eq(&self, other: &DateTime) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &Rhs) -> bool1.0.0[src]
fn ne(&self, other: &Rhs) -> boolThis method tests for !=.
impl Eq for DateTime
impl Eq for DateTimeimpl Ord for DateTime
impl Ord for DateTimefn cmp(&self, other: &DateTime) -> Ordering
fn cmp(&self, other: &DateTime) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
impl PartialOrd<DateTime> for DateTime
impl PartialOrd<DateTime> for DateTimefn partial_cmp(&self, other: &DateTime) -> Option<Ordering>
fn partial_cmp(&self, other: &DateTime) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
fn lt(&self, other: &Rhs) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &Rhs) -> bool1.0.0[src]
fn le(&self, other: &Rhs) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
fn gt(&self, other: &Rhs) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
fn ge(&self, other: &Rhs) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Clone for DateTime
impl Clone for DateTimefn clone(&self) -> DateTime
fn clone(&self) -> DateTimeReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl StaticType for DateTime
impl StaticType for DateTimefn static_type() -> Type
fn static_type() -> TypeReturns the type identifier of Self.