Struct linux_api::time::timezone [] [src]

#[repr(C)]
pub struct timezone { pub tz_minuteswest: c_int, pub tz_dsttime: c_int, }

A structure containing information on the time-based location of a timezone

Please note that this does not include the name or country code, only the minutes west of Greenwich and the type of DST correction

Fields

The number of minutes west of Greenwich

The type of Daylight Savings Time correction

Trait Implementations

impl Debug for timezone
[src]

Formats the value using the given formatter.

impl Clone for timezone
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for timezone
[src]