mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-05-25 12:40:41 +00:00
146 lines
82 KiB
HTML
146 lines
82 KiB
HTML
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta name="generator" content="rustdoc"><meta name="description" content="API documentation for the Rust `TimeZone` trait in crate `chrono`."><meta name="keywords" content="rust, rustlang, rust-lang, TimeZone"><title>chrono::offset::TimeZone - Rust</title><link rel="stylesheet" type="text/css" href="../../normalize.css"><link rel="stylesheet" type="text/css" href="../../rustdoc.css" id="mainThemeStyle"><link rel="stylesheet" type="text/css" href="../../dark.css"><link rel="stylesheet" type="text/css" href="../../light.css" id="themeStyle"><script src="../../storage.js"></script><noscript><link rel="stylesheet" href="../../noscript.css"></noscript><link rel="shortcut icon" href="../../favicon.ico"><style type="text/css">#crate-search{background-image:url("../../down-arrow.svg");}</style></head><body class="rustdoc trait"><!--[if lte IE 8]><div class="warning">This old browser is unsupported and will most likely display funky things.</div><![endif]--><nav class="sidebar"><div class="sidebar-menu">☰</div><a href='../../chrono/index.html'><img src='../../rust-logo.png' alt='logo' width='100'></a><p class='location'>Trait TimeZone</p><div class="sidebar-elems"><div class="block items"><a class="sidebar-title" href="#associated-types">Associated Types</a><div class="sidebar-links"><a href="#associatedtype.Offset">Offset</a></div><a class="sidebar-title" href="#required-methods">Required Methods</a><div class="sidebar-links"><a href="#tymethod.from_offset">from_offset</a><a href="#tymethod.offset_from_local_date">offset_from_local_date</a><a href="#tymethod.offset_from_local_datetime">offset_from_local_datetime</a><a href="#tymethod.offset_from_utc_date">offset_from_utc_date</a><a href="#tymethod.offset_from_utc_datetime">offset_from_utc_datetime</a></div><a class="sidebar-title" href="#provided-methods">Provided Methods</a><div class="sidebar-links"><a href="#method.datetime_from_str">datetime_from_str</a><a href="#method.from_local_date">from_local_date</a><a href="#method.from_local_datetime">from_local_datetime</a><a href="#method.from_utc_date">from_utc_date</a><a href="#method.from_utc_datetime">from_utc_datetime</a><a href="#method.isoywd">isoywd</a><a href="#method.isoywd_opt">isoywd_opt</a><a href="#method.timestamp">timestamp</a><a href="#method.timestamp_millis">timestamp_millis</a><a href="#method.timestamp_millis_opt">timestamp_millis_opt</a><a href="#method.timestamp_opt">timestamp_opt</a><a href="#method.ymd">ymd</a><a href="#method.ymd_opt">ymd_opt</a><a href="#method.yo">yo</a><a href="#method.yo_opt">yo_opt</a></div><a class="sidebar-title" href="#implementors">Implementors</a></div><p class='location'><a href='../index.html'>chrono</a>::<wbr><a href='index.html'>offset</a></p><script>window.sidebarCurrent = {name: 'TimeZone', ty: 'trait', relpath: ''};</script><script defer src="sidebar-items.js"></script></div></nav><div class="theme-picker"><button id="theme-picker" aria-label="Pick another theme!"><img src="../../brush.svg" width="18" alt="Pick another theme!"></button><div id="theme-choices"></div></div><script src="../../theme.js"></script><nav class="sub"><form class="search-form js-only"><div class="search-container"><div><select id="crate-search"><option value="All crates">All crates</option></select><input class="search-input" name="search" autocomplete="off" spellcheck="false" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"></div><a id="settings-menu" href="../../settings.html"><img src="../../wheel.svg" width="18" alt="Change settings"></a></div></form></nav><section id="main" class="content"><h1 class='fqn'><span class='out-of-band'><span id='render-detail'><a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs">[<span class='inner'>−</span>]</a></span><a class='srclink' href='../../src/chrono/offset/mod.rs.html#164-409' title='goto source code'>[src]</a></span><span class='in-band'>Trait <a href='../index.html'>chrono</a>::<wbr><a href='index.html'>offset</a>::<wbr><a class="trait" href=''>TimeZone</a></span></h1><div class="docblock type-decl hidden-by-usual-hider"><pre class='rust trait'>pub trait TimeZone: <a class="trait" href="https://doc.rust-lang.org/nightly/core/marker/trait.Sized.html" title="trait core::marker::Sized">Sized</a> + <a class="trait" href="https://doc.rust-lang.org/nightly/core/clone/trait.Clone.html" title="trait core::clone::Clone">Clone</a> {
|
||
type <a href='#associatedtype.Offset' class="type">Offset</a>: <a class="trait" href="../../chrono/offset/trait.Offset.html" title="trait chrono::offset::Offset">Offset</a>;
|
||
fn <a href='#tymethod.from_offset' class='fnname'>from_offset</a>(offset: &Self::<a class="type" href="../../chrono/offset/trait.TimeZone.html#associatedtype.Offset" title="type chrono::offset::TimeZone::Offset">Offset</a>) -> Self;
|
||
<div class='item-spacer'></div> fn <a href='#tymethod.offset_from_local_date' class='fnname'>offset_from_local_date</a>(<br> &self, <br> local: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a><br> ) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><Self::<a class="type" href="../../chrono/offset/trait.TimeZone.html#associatedtype.Offset" title="type chrono::offset::TimeZone::Offset">Offset</a>>;
|
||
<div class='item-spacer'></div> fn <a href='#tymethod.offset_from_local_datetime' class='fnname'>offset_from_local_datetime</a>(<br> &self, <br> local: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a><br> ) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><Self::<a class="type" href="../../chrono/offset/trait.TimeZone.html#associatedtype.Offset" title="type chrono::offset::TimeZone::Offset">Offset</a>>;
|
||
<div class='item-spacer'></div> fn <a href='#tymethod.offset_from_utc_date' class='fnname'>offset_from_utc_date</a>(&self, utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> Self::<a class="type" href="../../chrono/offset/trait.TimeZone.html#associatedtype.Offset" title="type chrono::offset::TimeZone::Offset">Offset</a>;
|
||
<div class='item-spacer'></div> fn <a href='#tymethod.offset_from_utc_datetime' class='fnname'>offset_from_utc_datetime</a>(&self, utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a>) -> Self::<a class="type" href="../../chrono/offset/trait.TimeZone.html#associatedtype.Offset" title="type chrono::offset::TimeZone::Offset">Offset</a>;
|
||
|
||
fn <a href='#method.ymd' class='fnname'>ymd</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, month: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, day: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self> { ... }
|
||
<div class='item-spacer'></div> fn <a href='#method.ymd_opt' class='fnname'>ymd_opt</a>(<br> &self, <br> year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, <br> month: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, <br> day: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a><br> ) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>> { ... }
|
||
<div class='item-spacer'></div> fn <a href='#method.yo' class='fnname'>yo</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, ordinal: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self> { ... }
|
||
<div class='item-spacer'></div> fn <a href='#method.yo_opt' class='fnname'>yo_opt</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, ordinal: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>> { ... }
|
||
<div class='item-spacer'></div> fn <a href='#method.isoywd' class='fnname'>isoywd</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, week: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, weekday: <a class="enum" href="../../chrono/enum.Weekday.html" title="enum chrono::Weekday">Weekday</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self> { ... }
|
||
<div class='item-spacer'></div> fn <a href='#method.isoywd_opt' class='fnname'>isoywd_opt</a>(<br> &self, <br> year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, <br> week: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, <br> weekday: <a class="enum" href="../../chrono/enum.Weekday.html" title="enum chrono::Weekday">Weekday</a><br> ) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>> { ... }
|
||
<div class='item-spacer'></div> fn <a href='#method.timestamp' class='fnname'>timestamp</a>(&self, secs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, nsecs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self> { ... }
|
||
<div class='item-spacer'></div> fn <a href='#method.timestamp_opt' class='fnname'>timestamp_opt</a>(<br> &self, <br> secs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, <br> nsecs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a><br> ) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>> { ... }
|
||
<div class='item-spacer'></div> fn <a href='#method.timestamp_millis' class='fnname'>timestamp_millis</a>(&self, millis: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>) -> <a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self> { ... }
|
||
<div class='item-spacer'></div> fn <a href='#method.timestamp_millis_opt' class='fnname'>timestamp_millis_opt</a>(&self, millis: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>> { ... }
|
||
<div class='item-spacer'></div> fn <a href='#method.datetime_from_str' class='fnname'>datetime_from_str</a>(<br> &self, <br> s: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, <br> fmt: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a><br> ) -> <a class="type" href="../../chrono/format/type.ParseResult.html" title="type chrono::format::ParseResult">ParseResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>> { ... }
|
||
<div class='item-spacer'></div> fn <a href='#method.from_local_date' class='fnname'>from_local_date</a>(&self, local: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>> { ... }
|
||
<div class='item-spacer'></div> fn <a href='#method.from_local_datetime' class='fnname'>from_local_datetime</a>(<br> &self, <br> local: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a><br> ) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>> { ... }
|
||
<div class='item-spacer'></div> fn <a href='#method.from_utc_date' class='fnname'>from_utc_date</a>(&self, utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self> { ... }
|
||
<div class='item-spacer'></div> fn <a href='#method.from_utc_datetime' class='fnname'>from_utc_datetime</a>(&self, utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a>) -> <a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self> { ... }
|
||
}</pre></div><div class='docblock'><p>The time zone.</p>
|
||
<p>The methods here are the primarily constructors for <a href="../struct.Date.html"><code>Date</code></a> and
|
||
<a href="../struct.DateTime.html"><code>DateTime</code></a> types.</p>
|
||
</div>
|
||
<h2 id='associated-types' class='small-section-header'>Associated Types<a href='#associated-types' class='anchor'></a></h2><div class='methods'><h3 id='associatedtype.Offset' class='method'><code id='Offset.t'>type <a href='#associatedtype.Offset' class="type">Offset</a>: <a class="trait" href="../../chrono/offset/trait.Offset.html" title="trait chrono::offset::Offset">Offset</a></code></h3><div class='docblock'><p>An associated offset type.
|
||
This type is used to store the actual offset in date and time types.
|
||
The original <code>TimeZone</code> value can be recovered via <code>TimeZone::from_offset</code>.</p>
|
||
</div></div><span class='loading-content'>Loading content...</span>
|
||
<h2 id='required-methods' class='small-section-header'>Required methods<a href='#required-methods' class='anchor'></a></h2><div class='methods'><h3 id='tymethod.from_offset' class='method'><code id='from_offset.v'>fn <a href='#tymethod.from_offset' class='fnname'>from_offset</a>(offset: &Self::<a class="type" href="../../chrono/offset/trait.TimeZone.html#associatedtype.Offset" title="type chrono::offset::TimeZone::Offset">Offset</a>) -> Self</code></h3><div class='docblock'><p>Reconstructs the time zone from the offset.</p>
|
||
</div><h3 id='tymethod.offset_from_local_date' class='method'><code id='offset_from_local_date.v'>fn <a href='#tymethod.offset_from_local_date' class='fnname'>offset_from_local_date</a>(&self, local: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><Self::<a class="type" href="../../chrono/offset/trait.TimeZone.html#associatedtype.Offset" title="type chrono::offset::TimeZone::Offset">Offset</a>></code></h3><div class='docblock'><p>Creates the offset(s) for given local <code>NaiveDate</code> if possible.</p>
|
||
</div><h3 id='tymethod.offset_from_local_datetime' class='method'><code id='offset_from_local_datetime.v'>fn <a href='#tymethod.offset_from_local_datetime' class='fnname'>offset_from_local_datetime</a>(<br> &self, <br> local: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a><br>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><Self::<a class="type" href="../../chrono/offset/trait.TimeZone.html#associatedtype.Offset" title="type chrono::offset::TimeZone::Offset">Offset</a>></code></h3><div class='docblock'><p>Creates the offset(s) for given local <code>NaiveDateTime</code> if possible.</p>
|
||
</div><h3 id='tymethod.offset_from_utc_date' class='method'><code id='offset_from_utc_date.v'>fn <a href='#tymethod.offset_from_utc_date' class='fnname'>offset_from_utc_date</a>(&self, utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> Self::<a class="type" href="../../chrono/offset/trait.TimeZone.html#associatedtype.Offset" title="type chrono::offset::TimeZone::Offset">Offset</a></code></h3><div class='docblock'><p>Creates the offset for given UTC <code>NaiveDate</code>. This cannot fail.</p>
|
||
</div><h3 id='tymethod.offset_from_utc_datetime' class='method'><code id='offset_from_utc_datetime.v'>fn <a href='#tymethod.offset_from_utc_datetime' class='fnname'>offset_from_utc_datetime</a>(&self, utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a>) -> Self::<a class="type" href="../../chrono/offset/trait.TimeZone.html#associatedtype.Offset" title="type chrono::offset::TimeZone::Offset">Offset</a></code></h3><div class='docblock'><p>Creates the offset for given UTC <code>NaiveDateTime</code>. This cannot fail.</p>
|
||
</div></div><span class='loading-content'>Loading content...</span>
|
||
<h2 id='provided-methods' class='small-section-header'>Provided methods<a href='#provided-methods' class='anchor'></a></h2><div class='methods'><h3 id='method.ymd' class='method'><code id='ymd.v'>fn <a href='#method.ymd' class='fnname'>ymd</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, month: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, day: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self></code></h3><div class='docblock'><p>Makes a new <code>Date</code> from year, month, day and the current time zone.
|
||
This assumes the proleptic Gregorian calendar, with the year 0 being 1 BCE.</p>
|
||
<p>The time zone normally does not affect the date (unless it is between UTC-24 and UTC+24),
|
||
but it will propagate to the <code>DateTime</code> values constructed via this date.</p>
|
||
<p>Panics on the out-of-range date, invalid month and/or day.</p>
|
||
<h1 id="example" class="section-header"><a href="#example">Example</a></h1>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered">
|
||
<span class="kw">use</span> <span class="ident">chrono</span>::{<span class="ident">Utc</span>, <span class="ident">TimeZone</span>};
|
||
|
||
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">Utc</span>.<span class="ident">ymd</span>(<span class="number">2015</span>, <span class="number">5</span>, <span class="number">15</span>).<span class="ident">to_string</span>(), <span class="string">"2015-05-15UTC"</span>);</pre></div>
|
||
</div><h3 id='method.ymd_opt' class='method'><code id='ymd_opt.v'>fn <a href='#method.ymd_opt' class='fnname'>ymd_opt</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, month: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, day: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>></code></h3><div class='docblock'><p>Makes a new <code>Date</code> from year, month, day and the current time zone.
|
||
This assumes the proleptic Gregorian calendar, with the year 0 being 1 BCE.</p>
|
||
<p>The time zone normally does not affect the date (unless it is between UTC-24 and UTC+24),
|
||
but it will propagate to the <code>DateTime</code> values constructed via this date.</p>
|
||
<p>Returns <code>None</code> on the out-of-range date, invalid month and/or day.</p>
|
||
<h1 id="example-1" class="section-header"><a href="#example-1">Example</a></h1>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered">
|
||
<span class="kw">use</span> <span class="ident">chrono</span>::{<span class="ident">Utc</span>, <span class="ident">LocalResult</span>, <span class="ident">TimeZone</span>};
|
||
|
||
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">Utc</span>.<span class="ident">ymd_opt</span>(<span class="number">2015</span>, <span class="number">5</span>, <span class="number">15</span>).<span class="ident">unwrap</span>().<span class="ident">to_string</span>(), <span class="string">"2015-05-15UTC"</span>);
|
||
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">Utc</span>.<span class="ident">ymd_opt</span>(<span class="number">2000</span>, <span class="number">0</span>, <span class="number">0</span>), <span class="ident">LocalResult</span>::<span class="prelude-val">None</span>);</pre></div>
|
||
</div><h3 id='method.yo' class='method'><code id='yo.v'>fn <a href='#method.yo' class='fnname'>yo</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, ordinal: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self></code></h3><div class='docblock'><p>Makes a new <code>Date</code> from year, day of year (DOY or "ordinal") and the current time zone.
|
||
This assumes the proleptic Gregorian calendar, with the year 0 being 1 BCE.</p>
|
||
<p>The time zone normally does not affect the date (unless it is between UTC-24 and UTC+24),
|
||
but it will propagate to the <code>DateTime</code> values constructed via this date.</p>
|
||
<p>Panics on the out-of-range date and/or invalid DOY.</p>
|
||
<h1 id="example-2" class="section-header"><a href="#example-2">Example</a></h1>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered">
|
||
<span class="kw">use</span> <span class="ident">chrono</span>::{<span class="ident">Utc</span>, <span class="ident">TimeZone</span>};
|
||
|
||
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">Utc</span>.<span class="ident">yo</span>(<span class="number">2015</span>, <span class="number">135</span>).<span class="ident">to_string</span>(), <span class="string">"2015-05-15UTC"</span>);</pre></div>
|
||
</div><h3 id='method.yo_opt' class='method'><code id='yo_opt.v'>fn <a href='#method.yo_opt' class='fnname'>yo_opt</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, ordinal: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>></code></h3><div class='docblock'><p>Makes a new <code>Date</code> from year, day of year (DOY or "ordinal") and the current time zone.
|
||
This assumes the proleptic Gregorian calendar, with the year 0 being 1 BCE.</p>
|
||
<p>The time zone normally does not affect the date (unless it is between UTC-24 and UTC+24),
|
||
but it will propagate to the <code>DateTime</code> values constructed via this date.</p>
|
||
<p>Returns <code>None</code> on the out-of-range date and/or invalid DOY.</p>
|
||
</div><h3 id='method.isoywd' class='method'><code id='isoywd.v'>fn <a href='#method.isoywd' class='fnname'>isoywd</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, week: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, weekday: <a class="enum" href="../../chrono/enum.Weekday.html" title="enum chrono::Weekday">Weekday</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self></code></h3><div class='docblock'><p>Makes a new <code>Date</code> from ISO week date (year and week number), day of the week (DOW) and
|
||
the current time zone.
|
||
This assumes the proleptic Gregorian calendar, with the year 0 being 1 BCE.
|
||
The resulting <code>Date</code> may have a different year from the input year.</p>
|
||
<p>The time zone normally does not affect the date (unless it is between UTC-24 and UTC+24),
|
||
but it will propagate to the <code>DateTime</code> values constructed via this date.</p>
|
||
<p>Panics on the out-of-range date and/or invalid week number.</p>
|
||
<h1 id="example-3" class="section-header"><a href="#example-3">Example</a></h1>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered">
|
||
<span class="kw">use</span> <span class="ident">chrono</span>::{<span class="ident">Utc</span>, <span class="ident">Weekday</span>, <span class="ident">TimeZone</span>};
|
||
|
||
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">Utc</span>.<span class="ident">isoywd</span>(<span class="number">2015</span>, <span class="number">20</span>, <span class="ident">Weekday</span>::<span class="ident">Fri</span>).<span class="ident">to_string</span>(), <span class="string">"2015-05-15UTC"</span>);</pre></div>
|
||
</div><h3 id='method.isoywd_opt' class='method'><code id='isoywd_opt.v'>fn <a href='#method.isoywd_opt' class='fnname'>isoywd_opt</a>(<br> &self, <br> year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, <br> week: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, <br> weekday: <a class="enum" href="../../chrono/enum.Weekday.html" title="enum chrono::Weekday">Weekday</a><br>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>></code></h3><div class='docblock'><p>Makes a new <code>Date</code> from ISO week date (year and week number), day of the week (DOW) and
|
||
the current time zone.
|
||
This assumes the proleptic Gregorian calendar, with the year 0 being 1 BCE.
|
||
The resulting <code>Date</code> may have a different year from the input year.</p>
|
||
<p>The time zone normally does not affect the date (unless it is between UTC-24 and UTC+24),
|
||
but it will propagate to the <code>DateTime</code> values constructed via this date.</p>
|
||
<p>Returns <code>None</code> on the out-of-range date and/or invalid week number.</p>
|
||
</div><h3 id='method.timestamp' class='method'><code id='timestamp.v'>fn <a href='#method.timestamp' class='fnname'>timestamp</a>(&self, secs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, nsecs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self></code></h3><div class='docblock'><p>Makes a new <code>DateTime</code> from the number of non-leap seconds
|
||
since January 1, 1970 0:00:00 UTC (aka "UNIX timestamp")
|
||
and the number of nanoseconds since the last whole non-leap second.</p>
|
||
<p>Panics on the out-of-range number of seconds and/or invalid nanosecond,
|
||
for a non-panicking version see <a href="#method.timestamp_opt"><code>timestamp_opt</code></a>.</p>
|
||
<h1 id="example-4" class="section-header"><a href="#example-4">Example</a></h1>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered">
|
||
<span class="kw">use</span> <span class="ident">chrono</span>::{<span class="ident">Utc</span>, <span class="ident">TimeZone</span>};
|
||
|
||
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">Utc</span>.<span class="ident">timestamp</span>(<span class="number">1431648000</span>, <span class="number">0</span>).<span class="ident">to_string</span>(), <span class="string">"2015-05-15 00:00:00 UTC"</span>);</pre></div>
|
||
</div><h3 id='method.timestamp_opt' class='method'><code id='timestamp_opt.v'>fn <a href='#method.timestamp_opt' class='fnname'>timestamp_opt</a>(&self, secs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, nsecs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>></code></h3><div class='docblock'><p>Makes a new <code>DateTime</code> from the number of non-leap seconds
|
||
since January 1, 1970 0:00:00 UTC (aka "UNIX timestamp")
|
||
and the number of nanoseconds since the last whole non-leap second.</p>
|
||
<p>Returns <code>LocalResult::None</code> on out-of-range number of seconds and/or
|
||
invalid nanosecond, otherwise always returns <code>LocalResult::Single</code>.</p>
|
||
</div><h3 id='method.timestamp_millis' class='method'><code id='timestamp_millis.v'>fn <a href='#method.timestamp_millis' class='fnname'>timestamp_millis</a>(&self, millis: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>) -> <a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self></code></h3><div class='docblock'><p>Makes a new <code>DateTime</code> from the number of non-leap milliseconds
|
||
since January 1, 1970 0:00:00 UTC (aka "UNIX timestamp").</p>
|
||
<p>Panics on out-of-range number of milliseconds for a non-panicking
|
||
version see <a href="#method.timestamp_millis_opt"><code>timestamp_millis_opt</code></a>.</p>
|
||
<h1 id="example-5" class="section-header"><a href="#example-5">Example</a></h1>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered">
|
||
<span class="kw">use</span> <span class="ident">chrono</span>::{<span class="ident">Utc</span>, <span class="ident">TimeZone</span>};
|
||
|
||
<span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">Utc</span>.<span class="ident">timestamp_millis</span>(<span class="number">1431648000</span>).<span class="ident">timestamp</span>(), <span class="number">1431648</span>);</pre></div>
|
||
</div><h3 id='method.timestamp_millis_opt' class='method'><code id='timestamp_millis_opt.v'>fn <a href='#method.timestamp_millis_opt' class='fnname'>timestamp_millis_opt</a>(&self, millis: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>></code></h3><div class='docblock'><p>Makes a new <code>DateTime</code> from the number of non-leap milliseconds
|
||
since January 1, 1970 0:00:00 UTC (aka "UNIX timestamp").</p>
|
||
<p>Returns <code>LocalResult::None</code> on out-of-range number of milliseconds
|
||
and/or invalid nanosecond, otherwise always returns
|
||
<code>LocalResult::Single</code>.</p>
|
||
<h1 id="example-6" class="section-header"><a href="#example-6">Example</a></h1>
|
||
<div class="example-wrap"><pre class="rust rust-example-rendered">
|
||
<span class="kw">use</span> <span class="ident">chrono</span>::{<span class="ident">Utc</span>, <span class="ident">TimeZone</span>, <span class="ident">LocalResult</span>};
|
||
<span class="kw">match</span> <span class="ident">Utc</span>.<span class="ident">timestamp_millis_opt</span>(<span class="number">1431648000</span>) {
|
||
<span class="ident">LocalResult</span>::<span class="ident">Single</span>(<span class="ident">dt</span>) <span class="op">=></span> <span class="macro">assert_eq</span><span class="macro">!</span>(<span class="ident">dt</span>.<span class="ident">timestamp</span>(), <span class="number">1431648</span>),
|
||
<span class="kw">_</span> <span class="op">=></span> <span class="macro">panic</span><span class="macro">!</span>(<span class="string">"Incorrect timestamp_millis"</span>),
|
||
};</pre></div>
|
||
</div><h3 id='method.datetime_from_str' class='method'><code id='datetime_from_str.v'>fn <a href='#method.datetime_from_str' class='fnname'>datetime_from_str</a>(&self, s: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, fmt: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>) -> <a class="type" href="../../chrono/format/type.ParseResult.html" title="type chrono::format::ParseResult">ParseResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>></code></h3><div class='docblock'><p>Parses a string with the specified format string and
|
||
returns a <code>DateTime</code> with the current offset.
|
||
See the <a href="../format/strftime/index.html"><code>format::strftime</code> module</a>
|
||
on the supported escape sequences.</p>
|
||
<p>If the format does not include offsets, the current offset is assumed;
|
||
otherwise the input should have a matching UTC offset.</p>
|
||
<p>See also <code>DateTime::parse_from_str</code> which gives a local <code>DateTime</code>
|
||
with parsed <code>FixedOffset</code>.</p>
|
||
</div><h3 id='method.from_local_date' class='method'><code id='from_local_date.v'>fn <a href='#method.from_local_date' class='fnname'>from_local_date</a>(&self, local: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>></code></h3><div class='docblock'><p>Converts the local <code>NaiveDate</code> to the timezone-aware <code>Date</code> if possible.</p>
|
||
</div><h3 id='method.from_local_datetime' class='method'><code id='from_local_datetime.v'>fn <a href='#method.from_local_datetime' class='fnname'>from_local_datetime</a>(<br> &self, <br> local: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a><br>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>></code></h3><div class='docblock'><p>Converts the local <code>NaiveDateTime</code> to the timezone-aware <code>DateTime</code> if possible.</p>
|
||
</div><h3 id='method.from_utc_date' class='method'><code id='from_utc_date.v'>fn <a href='#method.from_utc_date' class='fnname'>from_utc_date</a>(&self, utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self></code></h3><div class='docblock'><p>Converts the UTC <code>NaiveDate</code> to the local time.
|
||
The UTC is continuous and thus this cannot fail (but can give the duplicate local time).</p>
|
||
</div><h3 id='method.from_utc_datetime' class='method'><code id='from_utc_datetime.v'>fn <a href='#method.from_utc_datetime' class='fnname'>from_utc_datetime</a>(&self, utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a>) -> <a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self></code></h3><div class='docblock'><p>Converts the UTC <code>NaiveDateTime</code> to the local time.
|
||
The UTC is continuous and thus this cannot fail (but can give the duplicate local time).</p>
|
||
</div></div><span class='loading-content'>Loading content...</span>
|
||
<h2 id='implementors' class='small-section-header'>Implementors<a href='#implementors' class='anchor'></a></h2><div class='item-list' id='implementors-list'><h3 id='impl-TimeZone' class='impl'><code class='in-band'>impl TimeZone for <a class="struct" href="../../chrono/offset/struct.FixedOffset.html" title="struct chrono::offset::FixedOffset">FixedOffset</a></code><a href='#impl-TimeZone' class='anchor'></a><a class='srclink' href='../../src/chrono/offset/fixed.rs.html#99-113' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Offset-1' class="type"><code id='Offset.t-1'>type <a href='#associatedtype.Offset-1' class="type">Offset</a> = <a class="struct" href="../../chrono/offset/struct.FixedOffset.html" title="struct chrono::offset::FixedOffset">FixedOffset</a></code></h4><h4 id='method.from_offset' class="method hidden"><code id='from_offset.v-1'>fn <a href='#method.from_offset' class='fnname'>from_offset</a>(offset: &<a class="struct" href="../../chrono/offset/struct.FixedOffset.html" title="struct chrono::offset::FixedOffset">FixedOffset</a>) -> <a class="struct" href="../../chrono/offset/struct.FixedOffset.html" title="struct chrono::offset::FixedOffset">FixedOffset</a></code><a class='srclink' href='../../src/chrono/offset/fixed.rs.html#102' title='goto source code'>[src]</a></h4><h4 id='method.offset_from_local_date' class="method hidden"><code id='offset_from_local_date.v-1'>fn <a href='#method.offset_from_local_date' class='fnname'>offset_from_local_date</a>(&self, _local: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/offset/struct.FixedOffset.html" title="struct chrono::offset::FixedOffset">FixedOffset</a>></code><a class='srclink' href='../../src/chrono/offset/fixed.rs.html#104-106' title='goto source code'>[src]</a></h4><h4 id='method.offset_from_local_datetime' class="method hidden"><code id='offset_from_local_datetime.v-1'>fn <a href='#method.offset_from_local_datetime' class='fnname'>offset_from_local_datetime</a>(<br> &self, <br> _local: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a><br>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/offset/struct.FixedOffset.html" title="struct chrono::offset::FixedOffset">FixedOffset</a>></code><a class='srclink' href='../../src/chrono/offset/fixed.rs.html#107-109' title='goto source code'>[src]</a></h4><h4 id='method.offset_from_utc_date' class="method hidden"><code id='offset_from_utc_date.v-1'>fn <a href='#method.offset_from_utc_date' class='fnname'>offset_from_utc_date</a>(&self, _utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> <a class="struct" href="../../chrono/offset/struct.FixedOffset.html" title="struct chrono::offset::FixedOffset">FixedOffset</a></code><a class='srclink' href='../../src/chrono/offset/fixed.rs.html#111' title='goto source code'>[src]</a></h4><h4 id='method.offset_from_utc_datetime' class="method hidden"><code id='offset_from_utc_datetime.v-1'>fn <a href='#method.offset_from_utc_datetime' class='fnname'>offset_from_utc_datetime</a>(&self, _utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a>) -> <a class="struct" href="../../chrono/offset/struct.FixedOffset.html" title="struct chrono::offset::FixedOffset">FixedOffset</a></code><a class='srclink' href='../../src/chrono/offset/fixed.rs.html#112' title='goto source code'>[src]</a></h4><h4 id='method.ymd-1' class="method"><code id='ymd.v-1'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.ymd' class='fnname'>ymd</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, month: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, day: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#185-187' title='goto source code'>[src]</a></h4><h4 id='method.ymd_opt-1' class="method"><code id='ymd_opt.v-1'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.ymd_opt' class='fnname'>ymd_opt</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, month: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, day: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#205-210' title='goto source code'>[src]</a></h4><h4 id='method.yo-1' class="method"><code id='yo.v-1'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.yo' class='fnname'>yo</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, ordinal: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#227-229' title='goto source code'>[src]</a></h4><h4 id='method.yo_opt-1' class="method"><code id='yo_opt.v-1'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.yo_opt' class='fnname'>yo_opt</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, ordinal: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#238-243' title='goto source code'>[src]</a></h4><h4 id='method.isoywd-1' class="method"><code id='isoywd.v-1'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.isoywd' class='fnname'>isoywd</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, week: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, weekday: <a class="enum" href="../../chrono/enum.Weekday.html" title="enum chrono::Weekday">Weekday</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#262-264' title='goto source code'>[src]</a></h4><h4 id='method.isoywd_opt-1' class="method"><code id='isoywd_opt.v-1'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.isoywd_opt' class='fnname'>isoywd_opt</a>(<br> &self, <br> year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, <br> week: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, <br> weekday: <a class="enum" href="../../chrono/enum.Weekday.html" title="enum chrono::Weekday">Weekday</a><br>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#275-280' title='goto source code'>[src]</a></h4><h4 id='method.timestamp-1' class="method"><code id='timestamp.v-1'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.timestamp' class='fnname'>timestamp</a>(&self, secs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, nsecs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#296-298' title='goto source code'>[src]</a></h4><h4 id='method.timestamp_opt-1' class="method"><code id='timestamp_opt.v-1'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.timestamp_opt' class='fnname'>timestamp_opt</a>(&self, secs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, nsecs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#306-311' title='goto source code'>[src]</a></h4><h4 id='method.timestamp_millis-1' class="method"><code id='timestamp_millis.v-1'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.timestamp_millis' class='fnname'>timestamp_millis</a>(&self, millis: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>) -> <a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#326-328' title='goto source code'>[src]</a></h4><h4 id='method.timestamp_millis_opt-1' class="method"><code id='timestamp_millis_opt.v-1'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.timestamp_millis_opt' class='fnname'>timestamp_millis_opt</a>(&self, millis: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#347-350' title='goto source code'>[src]</a></h4><h4 id='method.datetime_from_str-1' class="method"><code id='datetime_from_str.v-1'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.datetime_from_str' class='fnname'>datetime_from_str</a>(&self, s: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, fmt: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>) -> <a class="type" href="../../chrono/format/type.ParseResult.html" title="type chrono::format::ParseResult">ParseResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#362-366' title='goto source code'>[src]</a></h4><h4 id='method.from_local_date-1' class="method"><code id='from_local_date.v-1'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.from_local_date' class='fnname'>from_local_date</a>(&self, local: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#378-383' title='goto source code'>[src]</a></h4><h4 id='method.from_local_datetime-1' class="method"><code id='from_local_datetime.v-1'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.from_local_datetime' class='fnname'>from_local_datetime</a>(<br> &self, <br> local: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a><br>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#386-390' title='goto source code'>[src]</a></h4><h4 id='method.from_utc_date-1' class="method"><code id='from_utc_date.v-1'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.from_utc_date' class='fnname'>from_utc_date</a>(&self, utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#400-402' title='goto source code'>[src]</a></h4><h4 id='method.from_utc_datetime-1' class="method"><code id='from_utc_datetime.v-1'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.from_utc_datetime' class='fnname'>from_utc_datetime</a>(&self, utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a>) -> <a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#406-408' title='goto source code'>[src]</a></h4></div><h3 id='impl-TimeZone-1' class='impl'><code class='in-band'>impl TimeZone for <a class="struct" href="../../chrono/offset/struct.Local.html" title="struct chrono::offset::Local">Local</a></code><a href='#impl-TimeZone-1' class='anchor'></a><a class='srclink' href='../../src/chrono/offset/local.rs.html#95-152' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Offset-2' class="type"><code id='Offset.t-2'>type <a href='#associatedtype.Offset-2' class="type">Offset</a> = <a class="struct" href="../../chrono/offset/struct.FixedOffset.html" title="struct chrono::offset::FixedOffset">FixedOffset</a></code></h4><h4 id='method.from_offset-1' class="method hidden"><code id='from_offset.v-2'>fn <a href='#method.from_offset-1' class='fnname'>from_offset</a>(_offset: &<a class="struct" href="../../chrono/offset/struct.FixedOffset.html" title="struct chrono::offset::FixedOffset">FixedOffset</a>) -> <a class="struct" href="../../chrono/offset/struct.Local.html" title="struct chrono::offset::Local">Local</a></code><a class='srclink' href='../../src/chrono/offset/local.rs.html#98' title='goto source code'>[src]</a></h4><h4 id='method.offset_from_local_date-1' class="method hidden"><code id='offset_from_local_date.v-2'>fn <a href='#method.offset_from_local_date-1' class='fnname'>offset_from_local_date</a>(&self, local: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/offset/struct.FixedOffset.html" title="struct chrono::offset::FixedOffset">FixedOffset</a>></code><a class='srclink' href='../../src/chrono/offset/local.rs.html#101-103' title='goto source code'>[src]</a></h4><h4 id='method.offset_from_local_datetime-1' class="method hidden"><code id='offset_from_local_datetime.v-2'>fn <a href='#method.offset_from_local_datetime-1' class='fnname'>offset_from_local_datetime</a>(<br> &self, <br> local: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a><br>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/offset/struct.FixedOffset.html" title="struct chrono::offset::FixedOffset">FixedOffset</a>></code><a class='srclink' href='../../src/chrono/offset/local.rs.html#105-107' title='goto source code'>[src]</a></h4><h4 id='method.offset_from_utc_date-1' class="method hidden"><code id='offset_from_utc_date.v-2'>fn <a href='#method.offset_from_utc_date-1' class='fnname'>offset_from_utc_date</a>(&self, utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> <a class="struct" href="../../chrono/offset/struct.FixedOffset.html" title="struct chrono::offset::FixedOffset">FixedOffset</a></code><a class='srclink' href='../../src/chrono/offset/local.rs.html#109-111' title='goto source code'>[src]</a></h4><h4 id='method.offset_from_utc_datetime-1' class="method hidden"><code id='offset_from_utc_datetime.v-2'>fn <a href='#method.offset_from_utc_datetime-1' class='fnname'>offset_from_utc_datetime</a>(&self, utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a>) -> <a class="struct" href="../../chrono/offset/struct.FixedOffset.html" title="struct chrono::offset::FixedOffset">FixedOffset</a></code><a class='srclink' href='../../src/chrono/offset/local.rs.html#113-115' title='goto source code'>[src]</a></h4><h4 id='method.from_local_date-2' class="method hidden"><code id='from_local_date.v-2'>fn <a href='#method.from_local_date-2' class='fnname'>from_local_date</a>(&self, local: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><<a class="struct" href="../../chrono/offset/struct.Local.html" title="struct chrono::offset::Local">Local</a>>></code><a class='srclink' href='../../src/chrono/offset/local.rs.html#118-124' title='goto source code'>[src]</a></h4><h4 id='method.from_local_datetime-2' class="method hidden"><code id='from_local_datetime.v-2'>fn <a href='#method.from_local_datetime-2' class='fnname'>from_local_datetime</a>(<br> &self, <br> local: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a><br>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><<a class="struct" href="../../chrono/offset/struct.Local.html" title="struct chrono::offset::Local">Local</a>>></code><a class='srclink' href='../../src/chrono/offset/local.rs.html#126-135' title='goto source code'>[src]</a></h4><h4 id='method.from_utc_date-2' class="method hidden"><code id='from_utc_date.v-2'>fn <a href='#method.from_utc_date-2' class='fnname'>from_utc_date</a>(&self, utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><<a class="struct" href="../../chrono/offset/struct.Local.html" title="struct chrono::offset::Local">Local</a>></code><a class='srclink' href='../../src/chrono/offset/local.rs.html#137-140' title='goto source code'>[src]</a></h4><h4 id='method.from_utc_datetime-2' class="method hidden"><code id='from_utc_datetime.v-2'>fn <a href='#method.from_utc_datetime-2' class='fnname'>from_utc_datetime</a>(&self, utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a>) -> <a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><<a class="struct" href="../../chrono/offset/struct.Local.html" title="struct chrono::offset::Local">Local</a>></code><a class='srclink' href='../../src/chrono/offset/local.rs.html#142-151' title='goto source code'>[src]</a></h4><h4 id='method.ymd-2' class="method"><code id='ymd.v-2'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.ymd' class='fnname'>ymd</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, month: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, day: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#185-187' title='goto source code'>[src]</a></h4><h4 id='method.ymd_opt-2' class="method"><code id='ymd_opt.v-2'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.ymd_opt' class='fnname'>ymd_opt</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, month: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, day: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#205-210' title='goto source code'>[src]</a></h4><h4 id='method.yo-2' class="method"><code id='yo.v-2'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.yo' class='fnname'>yo</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, ordinal: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#227-229' title='goto source code'>[src]</a></h4><h4 id='method.yo_opt-2' class="method"><code id='yo_opt.v-2'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.yo_opt' class='fnname'>yo_opt</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, ordinal: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#238-243' title='goto source code'>[src]</a></h4><h4 id='method.isoywd-2' class="method"><code id='isoywd.v-2'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.isoywd' class='fnname'>isoywd</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, week: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, weekday: <a class="enum" href="../../chrono/enum.Weekday.html" title="enum chrono::Weekday">Weekday</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#262-264' title='goto source code'>[src]</a></h4><h4 id='method.isoywd_opt-2' class="method"><code id='isoywd_opt.v-2'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.isoywd_opt' class='fnname'>isoywd_opt</a>(<br> &self, <br> year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, <br> week: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, <br> weekday: <a class="enum" href="../../chrono/enum.Weekday.html" title="enum chrono::Weekday">Weekday</a><br>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#275-280' title='goto source code'>[src]</a></h4><h4 id='method.timestamp-2' class="method"><code id='timestamp.v-2'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.timestamp' class='fnname'>timestamp</a>(&self, secs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, nsecs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#296-298' title='goto source code'>[src]</a></h4><h4 id='method.timestamp_opt-2' class="method"><code id='timestamp_opt.v-2'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.timestamp_opt' class='fnname'>timestamp_opt</a>(&self, secs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, nsecs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#306-311' title='goto source code'>[src]</a></h4><h4 id='method.timestamp_millis-2' class="method"><code id='timestamp_millis.v-2'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.timestamp_millis' class='fnname'>timestamp_millis</a>(&self, millis: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>) -> <a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#326-328' title='goto source code'>[src]</a></h4><h4 id='method.timestamp_millis_opt-2' class="method"><code id='timestamp_millis_opt.v-2'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.timestamp_millis_opt' class='fnname'>timestamp_millis_opt</a>(&self, millis: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#347-350' title='goto source code'>[src]</a></h4><h4 id='method.datetime_from_str-2' class="method"><code id='datetime_from_str.v-2'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.datetime_from_str' class='fnname'>datetime_from_str</a>(&self, s: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, fmt: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>) -> <a class="type" href="../../chrono/format/type.ParseResult.html" title="type chrono::format::ParseResult">ParseResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#362-366' title='goto source code'>[src]</a></h4></div><h3 id='impl-TimeZone-2' class='impl'><code class='in-band'>impl TimeZone for <a class="struct" href="../../chrono/offset/struct.Utc.html" title="struct chrono::offset::Utc">Utc</a></code><a href='#impl-TimeZone-2' class='anchor'></a><a class='srclink' href='../../src/chrono/offset/utc.rs.html#48-62' title='goto source code'>[src]</a></h3><div class='impl-items'><h4 id='associatedtype.Offset-3' class="type"><code id='Offset.t-3'>type <a href='#associatedtype.Offset-3' class="type">Offset</a> = <a class="struct" href="../../chrono/offset/struct.Utc.html" title="struct chrono::offset::Utc">Utc</a></code></h4><h4 id='method.from_offset-2' class="method hidden"><code id='from_offset.v-3'>fn <a href='#method.from_offset-2' class='fnname'>from_offset</a>(_state: &<a class="struct" href="../../chrono/offset/struct.Utc.html" title="struct chrono::offset::Utc">Utc</a>) -> <a class="struct" href="../../chrono/offset/struct.Utc.html" title="struct chrono::offset::Utc">Utc</a></code><a class='srclink' href='../../src/chrono/offset/utc.rs.html#51' title='goto source code'>[src]</a></h4><h4 id='method.offset_from_local_date-2' class="method hidden"><code id='offset_from_local_date.v-3'>fn <a href='#method.offset_from_local_date-2' class='fnname'>offset_from_local_date</a>(&self, _local: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/offset/struct.Utc.html" title="struct chrono::offset::Utc">Utc</a>></code><a class='srclink' href='../../src/chrono/offset/utc.rs.html#53-55' title='goto source code'>[src]</a></h4><h4 id='method.offset_from_local_datetime-2' class="method hidden"><code id='offset_from_local_datetime.v-3'>fn <a href='#method.offset_from_local_datetime-2' class='fnname'>offset_from_local_datetime</a>(&self, _local: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/offset/struct.Utc.html" title="struct chrono::offset::Utc">Utc</a>></code><a class='srclink' href='../../src/chrono/offset/utc.rs.html#56-58' title='goto source code'>[src]</a></h4><h4 id='method.offset_from_utc_date-2' class="method hidden"><code id='offset_from_utc_date.v-3'>fn <a href='#method.offset_from_utc_date-2' class='fnname'>offset_from_utc_date</a>(&self, _utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> <a class="struct" href="../../chrono/offset/struct.Utc.html" title="struct chrono::offset::Utc">Utc</a></code><a class='srclink' href='../../src/chrono/offset/utc.rs.html#60' title='goto source code'>[src]</a></h4><h4 id='method.offset_from_utc_datetime-2' class="method hidden"><code id='offset_from_utc_datetime.v-3'>fn <a href='#method.offset_from_utc_datetime-2' class='fnname'>offset_from_utc_datetime</a>(&self, _utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a>) -> <a class="struct" href="../../chrono/offset/struct.Utc.html" title="struct chrono::offset::Utc">Utc</a></code><a class='srclink' href='../../src/chrono/offset/utc.rs.html#61' title='goto source code'>[src]</a></h4><h4 id='method.ymd-3' class="method"><code id='ymd.v-3'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.ymd' class='fnname'>ymd</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, month: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, day: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#185-187' title='goto source code'>[src]</a></h4><h4 id='method.ymd_opt-3' class="method"><code id='ymd_opt.v-3'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.ymd_opt' class='fnname'>ymd_opt</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, month: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, day: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#205-210' title='goto source code'>[src]</a></h4><h4 id='method.yo-3' class="method"><code id='yo.v-3'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.yo' class='fnname'>yo</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, ordinal: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#227-229' title='goto source code'>[src]</a></h4><h4 id='method.yo_opt-3' class="method"><code id='yo_opt.v-3'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.yo_opt' class='fnname'>yo_opt</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, ordinal: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#238-243' title='goto source code'>[src]</a></h4><h4 id='method.isoywd-3' class="method"><code id='isoywd.v-3'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.isoywd' class='fnname'>isoywd</a>(&self, year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, week: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, weekday: <a class="enum" href="../../chrono/enum.Weekday.html" title="enum chrono::Weekday">Weekday</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#262-264' title='goto source code'>[src]</a></h4><h4 id='method.isoywd_opt-3' class="method"><code id='isoywd_opt.v-3'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.isoywd_opt' class='fnname'>isoywd_opt</a>(<br> &self, <br> year: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i32.html">i32</a>, <br> week: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>, <br> weekday: <a class="enum" href="../../chrono/enum.Weekday.html" title="enum chrono::Weekday">Weekday</a><br>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#275-280' title='goto source code'>[src]</a></h4><h4 id='method.timestamp-3' class="method"><code id='timestamp.v-3'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.timestamp' class='fnname'>timestamp</a>(&self, secs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, nsecs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#296-298' title='goto source code'>[src]</a></h4><h4 id='method.timestamp_opt-3' class="method"><code id='timestamp_opt.v-3'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.timestamp_opt' class='fnname'>timestamp_opt</a>(&self, secs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>, nsecs: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.u32.html">u32</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#306-311' title='goto source code'>[src]</a></h4><h4 id='method.timestamp_millis-3' class="method"><code id='timestamp_millis.v-3'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.timestamp_millis' class='fnname'>timestamp_millis</a>(&self, millis: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>) -> <a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#326-328' title='goto source code'>[src]</a></h4><h4 id='method.timestamp_millis_opt-3' class="method"><code id='timestamp_millis_opt.v-3'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.timestamp_millis_opt' class='fnname'>timestamp_millis_opt</a>(&self, millis: <a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.i64.html">i64</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#347-350' title='goto source code'>[src]</a></h4><h4 id='method.datetime_from_str-3' class="method"><code id='datetime_from_str.v-3'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.datetime_from_str' class='fnname'>datetime_from_str</a>(&self, s: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>, fmt: &<a class="primitive" href="https://doc.rust-lang.org/nightly/std/primitive.str.html">str</a>) -> <a class="type" href="../../chrono/format/type.ParseResult.html" title="type chrono::format::ParseResult">ParseResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#362-366' title='goto source code'>[src]</a></h4><h4 id='method.from_local_date-3' class="method"><code id='from_local_date.v-3'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.from_local_date' class='fnname'>from_local_date</a>(&self, local: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#378-383' title='goto source code'>[src]</a></h4><h4 id='method.from_local_datetime-3' class="method"><code id='from_local_datetime.v-3'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.from_local_datetime' class='fnname'>from_local_datetime</a>(<br> &self, <br> local: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a><br>) -> <a class="enum" href="../../chrono/offset/enum.LocalResult.html" title="enum chrono::offset::LocalResult">LocalResult</a><<a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self>></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#386-390' title='goto source code'>[src]</a></h4><h4 id='method.from_utc_date-3' class="method"><code id='from_utc_date.v-3'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.from_utc_date' class='fnname'>from_utc_date</a>(&self, utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDate.html" title="struct chrono::naive::NaiveDate">NaiveDate</a>) -> <a class="struct" href="../../chrono/struct.Date.html" title="struct chrono::Date">Date</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#400-402' title='goto source code'>[src]</a></h4><h4 id='method.from_utc_datetime-3' class="method"><code id='from_utc_datetime.v-3'>fn <a href='../../chrono/offset/trait.TimeZone.html#method.from_utc_datetime' class='fnname'>from_utc_datetime</a>(&self, utc: &<a class="struct" href="../../chrono/naive/struct.NaiveDateTime.html" title="struct chrono::naive::NaiveDateTime">NaiveDateTime</a>) -> <a class="struct" href="../../chrono/struct.DateTime.html" title="struct chrono::DateTime">DateTime</a><Self></code><a class='srclink' href='../../src/chrono/offset/mod.rs.html#406-408' title='goto source code'>[src]</a></h4></div></div><span class='loading-content'>Loading content...</span><script type="text/javascript">window.inlined_types=new Set([]);</script><script type="text/javascript" async
|
||
src="../../implementors/chrono/offset/trait.TimeZone.js">
|
||
</script></section><section id="search" class="content hidden"></section><section class="footer"></section><aside id="help" class="hidden"><div><h1 class="hidden">Help</h1><div class="shortcuts"><h2>Keyboard Shortcuts</h2><dl><dt><kbd>?</kbd></dt><dd>Show this help dialog</dd><dt><kbd>S</kbd></dt><dd>Focus the search field</dd><dt><kbd>↑</kbd></dt><dd>Move up in search results</dd><dt><kbd>↓</kbd></dt><dd>Move down in search results</dd><dt><kbd>↹</kbd></dt><dd>Switch tab</dd><dt><kbd>⏎</kbd></dt><dd>Go to active search result</dd><dt><kbd>+</kbd></dt><dd>Expand all sections</dd><dt><kbd>-</kbd></dt><dd>Collapse all sections</dd></dl></div><div class="infos"><h2>Search Tricks</h2><p>Prefix searches with a type followed by a colon (e.g., <code>fn:</code>) to restrict the search to a given type.</p><p>Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>.</p><p>Search functions by type signature (e.g., <code>vec -> usize</code> or <code>* -> vec</code>)</p><p>Search multiple things at once by splitting your query with comma (e.g., <code>str,u8</code> or <code>String,struct:Vec,test</code>)</p></div></div></aside><script>window.rootPath = "../../";window.currentCrate = "chrono";</script><script src="../../aliases.js"></script><script src="../../main.js"></script><script defer src="../../search-index.js"></script></body></html> |