Struct arrow::ipc::gen::Schema::Timestamp[][src]

pub struct Timestamp<'a> {
    pub _tab: Table<'a>,
}
Expand description

Time elapsed from the Unix epoch, 00:00:00.000 on 1 January 1970, excluding leap seconds, as a 64-bit integer. Note that UNIX time does not include leap seconds.

The Timestamp metadata supports both “time zone naive” and “time zone aware” timestamps. Read about the timezone attribute for more detail

Fields

_tab: Table<'a>

Implementations

The time zone is a string indicating the name of a time zone, one of:

  • As used in the Olson time zone database (the “tz database” or “tzdata”), such as “America/New_York”
  • An absolute time zone offset of the form +XX:XX or -XX:XX, such as +07:30

Whether a timezone string is present indicates different semantics about the data:

  • If the time zone is null or equal to an empty string, the data is “time zone naive” and shall be displayed as is to the user, not localized to the locale of the user. This data can be though of as UTC but without having “UTC” as the time zone, it is not considered to be localized to any time zone

  • If the time zone is set to a valid value, values can be displayed as “localized” to that time zone, even though the underlying 64-bit integers are identical to the same data stored in UTC. Converting between time zones is a metadata-only operation and does not change the underlying values

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Runs the verifier for this type, assuming its at position pos in the verifier’s buffer. Should not need to be called directly. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.