Home
last modified time | relevance | path

Searched refs:east_opt (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/chrono/src/offset/
Dfixed.rs43 FixedOffset::east_opt(secs).expect("FixedOffset::east out of bounds") in east()
50 pub fn east_opt(secs: i32) -> Option<FixedOffset> { in east_opt() method
/external/rust/crates/chrono/src/format/
Dparsed.rs645 self.offset.and_then(FixedOffset::east_opt).ok_or(OUT_OF_RANGE) in to_fixed_offset()
657 let offset = FixedOffset::east_opt(offset).ok_or(OUT_OF_RANGE)?; in to_datetime()