CkDateTime Rust Reference Documentation

DateTime

Current Version: 11.6.1

CkDateTime represents a date/time value and provides conversion methods for common date/time formats, including .NET DateTime, DateTime ticks, RFC 822, RFC 3339 / ISO 8601-style timestamps, Unix time, DOS date/time, OLE DATE, NTP time, ULID timestamps, and Chilkat DtObj. It also supports date arithmetic, age/expiration checks, serialization, and local/UTC conversion.

For an extended overview, see CkDateTime Class Overview

Object Creation

// Cargo.toml:
//     [dependencies]
//     chilkat = "11.6"

use chilkat::DateTime;

// Once per process, before any other Chilkat call:
chilkat::unlock_bundle("Anything for 30-day trial")?;  // shorthand for Global::new().unlock_bundle(..)

let date_time = DateTime::new();
// ... the native object is freed when `date_time` goes out of scope.
pub fn new() -> DateTime

Creates the underlying native Chilkat object (DateTime also implements Default). Every method takes &self, so the object never needs to be declared mut. A DateTime is Send but not Sync: it may be moved to another thread, but a reference to it cannot be shared between threads at the same time.

impl Drop for DateTime

The native object is freed when the DateTime is dropped — when it goes out of scope, or explicitly with drop(date_time). There is no Dispose method to call.

Errors

Methods that can fail return chilkat::Result<T>, which is Result<T, chilkat::Error>: a method whose only outcome is success or failure returns Result<()>, a method producing a string or an object returns Result<String> or Result<DateTime>. The error carries the object's LastErrorText at the time of the failure (Error::last_error_text), the class and method names, and implements std::error::Error, so ? works in any function returning chilkat::Result or a Box<dyn Error>. Properties never fail, and methods that answer a question (has_..., is_..., ...) return a plain bool.

match date_time.some_method(...) {
    Ok(value) => println!("{value:?}"),
    Err(e) => eprintln!("{}", e.last_error_text()),
}

Properties

DebugLogFilePath
// read/write
pub fn debug_log_file_path(&self) -> String
pub fn set_debug_log_file_path(&self, value: &str)

If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.

Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.

Possible causes of hangs include:

  • A timeout property set to 0, indicating an infinite timeout.
  • A hang occurring within an event callback in the application code.
  • An internal bug in the Chilkat code causing the hang.

More Information and Examples
top
IsDst
// read-only
pub fn is_dst(&self) -> i32

This is the Daylight Saving Time flag. It can have one of three possible values: 1, 0, or -1. It has the value 1 if Daylight Saving Time is in effect, 0 if Daylight Saving Time is not in effect, and -1 if the information is not available.

Note: This is NOT the DST for the current system time. It is the DST that was in effect at the date value contained in this object.

top
LastErrorHtml
// read-only
pub fn last_error_html(&self) -> String

Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorText
// read-only
pub fn last_error_text(&self) -> String

Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorXml
// read-only
pub fn last_error_xml(&self) -> String

Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastMethodSuccess
// read/write
pub fn last_method_success(&self) -> bool
pub fn set_last_method_success(&self, value: bool)

Indicates the success or failure of the most recent method call: true means success, false means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages. Note: This property does not apply to methods that return integer values or to boolean-returning methods where the boolean does not indicate success or failure.

top
UtcOffset
// read-only
pub fn utc_offset(&self) -> i32

For the current system's timezone, returns the number of seconds offset from UTC for this date/time. The offset includes daylight savings adjustment. Local timezones west of UTC return a negative offset.

top
VerboseLogging
// read/write
pub fn verbose_logging(&self) -> bool
pub fn set_verbose_logging(&self, value: bool)

If set to true, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is false. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
// read-only
pub fn version(&self) -> String

Version of the component/library, such as "10.1.0"

More Information and Examples
top

Methods

AddDays
pub fn add_days(&self, num_days: i32) -> Result<()>

Adds an integer number of days to the date/time. To subtract days, pass a negative integer.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
AddSeconds
pub fn add_seconds(&self, num_seconds: i32) -> Result<()>
Introduced in version 9.5.0.65

Adds an integer number of seconds to the date/time. To subtract seconds, pass a negative integer.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

More Information and Examples
top
DeSerialize
pub fn de_serialize(&self, serialized_date_time: &str)

Loads the date/time with a string having the format as produced by the Serialize method, which is a string of SPACE separated integers containing (in this order) year, month, day, hour, minutes, seconds, and a UTC flag having the value of 1/0.

top
DiffSeconds
pub fn diff_seconds(&self, date_time_arg: &DateTime) -> i32
Introduced in version 9.5.0.65

Returns the difference in seconds between the date_time_arg and this date/time. The value returned is this object's date/time - date_time_arg's date/time. For example, if the returned value is positive, then this object's date/time is more recent than date_time_arg's date/time. If the return value is negative, then this object's date/time is older than date_time_arg's date/time.

top
ExpiresWithin
pub fn expires_within(&self, n: i32, units: &str) -> bool
Introduced in version 9.5.0.67

Returns true if the date/time is within n seconds/minutes/hours/days of the current system date/time. Otherwise returns false. The units can be seconds, minutes, hours, or days (plural or singular).

top
GetAsDateTimeTicks
pub fn get_as_date_time_ticks(&self, b_local: bool) -> i64

Returns the date/time as a 64-bit integer .NET DateTime value.

b_local indicates whether a local or UTC time is returned.

This is a date and time expressed in the number of 100-nanosecond intervals that have elapsed since January 1, 0001 at 00:00:00.000 in the Gregorian calendar.

The DateTime value type represents dates and times with values ranging from 12:00:00 midnight, January 1, 0001 Anno Domini (Common Era) through 11:59:59 P.M., December 31, 9999 A.D. (C.E.).

Time values are measured in 100-nanosecond units called ticks, and a particular date is the number of ticks since 12:00 midnight, January 1, 0001 A.D. (C.E.) in the GregorianCalendar calendar (excluding ticks that would be added by leap seconds). For example, a ticks value of 31241376000000000L represents the date, Friday, January 01, 0100 12:00:00 midnight. A DateTime value is always expressed in the context of an explicit or default calendar.

top
GetAsDosDate
pub fn get_as_dos_date(&self, b_local: bool) -> u32

Returns the date/time as a 32-bit DOS date/time bitmask.

b_local indicates whether a local or UTC time is returned.

The DOS date/time format is a bitmask:


			   24                16                 8                 0
	    +-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+
	    |Y|Y|Y|Y|Y|Y|Y|M| |M|M|M|D|D|D|D|D| |h|h|h|h|h|m|m|m| |m|m|m|s|s|s|s|s|
	    +-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+
	     \___________/\________/\_________/ \________/\____________/\_________/
		 year        month       day      hour       minute        second

The year is stored as an offset from 1980. Seconds are stored in two-second increments. (So if the second value is 15, it actually represents 30 seconds.)

top
GetAsIso8601
pub fn get_as_iso8601(&self, format_str: &str, b_local: bool) -> Result<String>
Introduced in version 9.5.0.65

Returns the date/time in a compatible ISO 8601 format according to the format specified in format_str.. Examples of ISO 8601 formats include the following:

    YYYY-MM-DD

    YYYY-MM-DDThh:mmTZD

    YYYY-MM-DDThh:mm:ssTZD

    YYYY-MM-DDThh:mm:ss:sssTZD
For the date portion of these formats, YYYY is a four-digit year representation, MM is a two-digit month, and DD is a two-digit day. For the time portion, hh is the hour in 24-hour notation, mm is the two-digit minutes, ss is the two-digit seconds, and sss is the 3-digit milliseconds. A time designator T separates the date and time portions of the string, while a time zone designator TZD specifies a time zone (UTC).

b_local indicates whether a local or UTC time is returned.

Returns Err(chilkat::Error) on failure.

More Information and Examples
top
GetAsOleDate
pub fn get_as_ole_date(&self, b_local: bool) -> f64

Returns the date/time in a Windows OLE DATE format.

b_local indicates whether a local or UTC time is returned.

The OLE automation date format is a floating point value, counting days since midnight 30 December 1899. Hours and minutes are represented as fractional days.

top
GetAsRfc822
pub fn get_as_rfc822(&self, b_local: bool) -> Result<String>

Returns the date/time as an RFC822 formatted string. (An RFC822 format string is what is found in the Date header field of an email, such as Wed, 18 Oct 2017 09:08:21 GMT.)

b_local indicates whether a local or UTC time is returned.

Returns Err(chilkat::Error) on failure.

top
GetAsTimestamp
pub fn get_as_timestamp(&self, b_local: bool) -> Result<String>
Introduced in version 9.5.0.58

Returns the date/time as an RFC 3339 formatted string, such as 1990-12-31T23:59:60Z. (This is an ISO 8061 format like the following: YYYY-MM-DDThh:mm:ssTZD)

b_local indicates whether a local or UTC time is returned.

Returns Err(chilkat::Error) on failure.

top
GetAsUnixTime
pub fn get_as_unix_time(&self, b_local: bool) -> u32

Returns the date/time as a Unix time value, which is the number of seconds elapsed since 00:00:00 UTC on January 1, 1970.

b_local indicates whether the date/time returned is local or UTC.

top
GetAsUnixTime64
pub fn get_as_unix_time64(&self, b_local: bool) -> i64

The same as GetUnixTime, except returns the date/time as a 64-bit integer.

b_local indicates whether a local or UTC time is returned.

Note: 64-bit integers are needed after Jan 19, 2038. The Y2038 problem happens because some systems store Unix time as a signed 32-bit number of seconds since Jan 1, 1970. This number runs out on Jan 19, 2038, causing the time to wrap around to a date in 1901.

top
GetAsUnixTimeDbl
pub fn get_as_unix_time_dbl(&self, b_local: bool) -> f64

The same as GetUnixTime, except returns the date/time as a double.

b_local indicates whether a local or UTC time is returned.

top
GetAsUnixTimeStr
pub fn get_as_unix_time_str(&self, b_local: bool) -> Result<String>
Introduced in version 9.5.0.65

Returns the time in Unix format (in seconds since the epoch: 00:00:00 UTC on 1 January 1970).

b_local indicates whether the date/time returned is local or UTC.

Returns Err(chilkat::Error) on failure.

More Information and Examples
top
OlderThan
pub fn older_than(&self, n: i32, units: &str) -> bool
Introduced in version 9.5.0.67

Returns true if the date/time is older than the current system date/time by n seconds/minutes/hours/days. Otherwise returns false. The units can be seconds, minutes, hours, or days (plural or singular).

top
Serialize
pub fn serialize(&self) -> Result<String>

Serializes the date/time to a us-ascii string that can be imported at a later time via the DeSerialize method. The format of the string returned by this method is not intended to match any published standard. It is formatted to a string with SPACE separated integers containing (in this order) year, month, day, hour, minutes, seconds, and a UTC flag having the value of 1 or 0.

Returns Err(chilkat::Error) on failure.

top
SetFromCurrentSystemTime
pub fn set_from_current_system_time(&self) -> Result<()>

Sets the date/time from the current system time.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
SetFromDateTimeTicks
pub fn set_from_date_time_ticks(&self, b_local: bool, ticks: i64) -> Result<()>

Sets the date/time from a .NET DateTime value represented in ticks. See GetAsDateTimeTicks for more information.

b_local indicates whether the passed in date/time is local or UTC.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
SetFromDosDate
pub fn set_from_dos_date(&self, b_local: bool, t: u32) -> Result<()>

Sets the date/time from a 32-bit DOS date/time bitmask. See GetAsDosDate for more information.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
SetFromDtObj
pub fn set_from_dt_obj(&self, dt: &DtObj) -> Result<()>
Introduced in version 9.5.0.47

Sets the date/time from a Chilkat Dt object.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
SetFromNtpServer
pub fn set_from_ntp_server(&self, json_str: &str) -> Result<()>
Introduced in version 9.5.0.96

Sets the date/time by sending a query to an NTP server.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

More Information and Examples
top
SetFromNtpTime
pub fn set_from_ntp_time(&self, ntp_seconds: i32) -> Result<()>
Introduced in version 9.5.0.50

Sets the date/time from a 32-bit NTP time value. ntp_seconds is the number of seconds since 00:00 (midnight) 1 January 1900 GMT.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
SetFromOleDate
pub fn set_from_ole_date(&self, b_local: bool, dt: f64) -> Result<()>

Sets the date/time from a Windows OLE DATE value.

b_local indicates whether the passed in date/time is local or UTC.

Note: This method was not working correctly. The problem was discovered just after releasing v9.5.0.65. It will be fixed in the next version update.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
SetFromRfc822
pub fn set_from_rfc822(&self, rfc822_str: &str) -> Result<()>

Sets the date/time from an RFC822 date/time formatted string. Here are some examples of RFC822 formatted date/times:

Tue, 15 Nov 2022 22:00:58 +0000
Tue, 15 Nov 2022 20:21:50 +0100
Tue, 01 Nov 2022 18:09:41 -0600

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
SetFromTimestamp
pub fn set_from_timestamp(&self, timestamp: &str) -> Result<()>
Introduced in version 9.5.0.58

Sets the date/time from an RFC 3339 timestamp format. (such as 1990-12-31T23:59:60Z:)

(This is an ISO 8061 format like the following: YYYY-MM-DDThh:mm:ssTZD)

Note: Starting in v9.5.0.77, strings formatted as YYMMDDhhmmssZ, such as 181221132225Z, can also be passed to this method.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
SetFromUlid
pub fn set_from_ulid(&self, b_local: bool, ulid: &str) -> Result<()>
Introduced in version 9.5.0.94

Sets this object's date/time using the timestamp embedded in the ulid. If the ulid was not a valid ULID, returns false and the date/time is not set. b_local indicates whether the ulid uses a local time or UTC time.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

More Information and Examples
top
SetFromUnixTime
pub fn set_from_unix_time(&self, b_local: bool, t: u32) -> Result<()>

Sets the date/time from a UNIX time value.

b_local indicates whether the passed in date/time is local or UTC.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
SetFromUnixTime64
pub fn set_from_unix_time64(&self, b_local: bool, t: i64) -> Result<()>

The same as SetFromUnixTime, except that it uses a 64-bit integer to solve the Y2038 problem.

b_local indicates whether the passed in date/time is local or UTC.

Note: 64-bit integers are needed after Jan 19, 2038. The Y2038 problem happens because some systems store Unix time as a signed 32-bit number of seconds since Jan 1, 1970. This number runs out on Jan 19, 2038, causing the time to wrap around to a date in 1901.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
SetFromUnixTimeDbl
pub fn set_from_unix_time_dbl(&self, b_local: bool, d: f64) -> Result<()>

The same as SetFromUnixTime, except that it uses a double to solve the Y2038 problem. (See GetAsUnixTime for more information about Y2038).

b_local indicates whether the passed in date/time is local or UTC.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
ToDtObj
pub fn to_dt_obj(&self, b_local: bool, dt_obj: &DtObj)
Introduced in version 11.0.0

Copies the date/time to the dt_obj. Gets the date/time in the local time if b_local is true, or GMT if b_local is false.

top
UlidGenerate
pub fn ulid_generate(&self, b_local: bool) -> Result<String>
Introduced in version 9.5.0.94

Generates and returns a new ULID using this object's date/time value. b_local indicates whether to use local time or UTC time.

Returns Err(chilkat::Error) on failure.

More Information and Examples
top
UlidIncrement
pub fn ulid_increment(&self, ulid: &StringBuilder) -> Result<()>
Introduced in version 9.5.0.94

Increments the ULID that is passed in ulid.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

More Information and Examples
top
UlidValidate
pub fn ulid_validate(&self, ulid: &str) -> Result<()>
Introduced in version 9.5.0.94

Validates the ulid. Returns true if the ulid is valid, otherwise returns false.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

More Information and Examples
top