[−][src]Enum chrono::offset::LocalResult
The conversion result from the local time to the timezone-aware datetime types.
Variants
None
Given local time representation is invalid. This can occur when, for example, the positive timezone transition.
Single(T)
Given local time representation has a single unique result.
Ambiguous(T, T)
Given local time representation has multiple results and thus ambiguous. This can occur when, for example, the negative timezone transition.
Methods
impl<T> LocalResult<T>
[src]
impl<T> LocalResult<T>
pub fn single(self) -> Option<T>
[src]
pub fn single(self) -> Option<T>
Returns Some
only when the conversion result is unique, or None
otherwise.
pub fn earliest(self) -> Option<T>
[src]
pub fn earliest(self) -> Option<T>
Returns Some
for the earliest possible conversion result, or None
if none.
pub fn latest(self) -> Option<T>
[src]
pub fn latest(self) -> Option<T>
Returns Some
for the latest possible conversion result, or None
if none.
pub fn map<U, F: FnMut(T) -> U>(self, f: F) -> LocalResult<U>
[src]
pub fn map<U, F: FnMut(T) -> U>(self, f: F) -> LocalResult<U>
Maps a LocalResult<T>
into LocalResult<U>
with given function.
impl<Tz: TimeZone> LocalResult<Date<Tz>>
[src]
impl<Tz: TimeZone> LocalResult<Date<Tz>>
pub fn and_time(self, time: NaiveTime) -> LocalResult<DateTime<Tz>>
[src]
pub fn and_time(self, time: NaiveTime) -> LocalResult<DateTime<Tz>>
Makes a new DateTime
from the current date and given NaiveTime
.
The offset in the current date is preserved.
Propagates any error. Ambiguous result would be discarded.
pub fn and_hms_opt(
self,
hour: u32,
min: u32,
sec: u32
) -> LocalResult<DateTime<Tz>>
[src]
pub fn and_hms_opt(
self,
hour: u32,
min: u32,
sec: u32
) -> LocalResult<DateTime<Tz>>
Makes a new DateTime
from the current date, hour, minute and second.
The offset in the current date is preserved.
Propagates any error. Ambiguous result would be discarded.
pub fn and_hms_milli_opt(
self,
hour: u32,
min: u32,
sec: u32,
milli: u32
) -> LocalResult<DateTime<Tz>>
[src]
pub fn and_hms_milli_opt(
self,
hour: u32,
min: u32,
sec: u32,
milli: u32
) -> LocalResult<DateTime<Tz>>
Makes a new DateTime
from the current date, hour, minute, second and millisecond.
The millisecond part can exceed 1,000 in order to represent the leap second.
The offset in the current date is preserved.
Propagates any error. Ambiguous result would be discarded.
pub fn and_hms_micro_opt(
self,
hour: u32,
min: u32,
sec: u32,
micro: u32
) -> LocalResult<DateTime<Tz>>
[src]
pub fn and_hms_micro_opt(
self,
hour: u32,
min: u32,
sec: u32,
micro: u32
) -> LocalResult<DateTime<Tz>>
Makes a new DateTime
from the current date, hour, minute, second and microsecond.
The microsecond part can exceed 1,000,000 in order to represent the leap second.
The offset in the current date is preserved.
Propagates any error. Ambiguous result would be discarded.
pub fn and_hms_nano_opt(
self,
hour: u32,
min: u32,
sec: u32,
nano: u32
) -> LocalResult<DateTime<Tz>>
[src]
pub fn and_hms_nano_opt(
self,
hour: u32,
min: u32,
sec: u32,
nano: u32
) -> LocalResult<DateTime<Tz>>
Makes a new DateTime
from the current date, hour, minute, second and nanosecond.
The nanosecond part can exceed 1,000,000,000 in order to represent the leap second.
The offset in the current date is preserved.
Propagates any error. Ambiguous result would be discarded.
impl<T: Debug> LocalResult<T>
[src]
impl<T: Debug> LocalResult<T>
Trait Implementations
impl<T: Clone> Clone for LocalResult<T>
[src]
impl<T: Clone> Clone for LocalResult<T>
fn clone(&self) -> LocalResult<T>
[src]
fn clone(&self) -> LocalResult<T>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl<T: PartialEq> PartialEq<LocalResult<T>> for LocalResult<T>
[src]
impl<T: PartialEq> PartialEq<LocalResult<T>> for LocalResult<T>
fn eq(&self, other: &LocalResult<T>) -> bool
[src]
fn eq(&self, other: &LocalResult<T>) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &LocalResult<T>) -> bool
[src]
fn ne(&self, other: &LocalResult<T>) -> bool
This method tests for !=
.
impl<T: Debug> Debug for LocalResult<T>
[src]
impl<T: Debug> Debug for LocalResult<T>
Auto Trait Implementations
impl<T> Send for LocalResult<T> where
T: Send,
impl<T> Send for LocalResult<T> where
T: Send,
impl<T> Sync for LocalResult<T> where
T: Sync,
impl<T> Sync for LocalResult<T> where
T: Sync,
Blanket Implementations
impl<T> From for T
[src]
impl<T> From for T
impl<T, U> Into for T where
U: From<T>,
[src]
impl<T, U> Into for T where
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
[src]
fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)
[src]
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T, U> TryFrom for T where
T: From<U>,
[src]
impl<T, U> TryFrom for T where
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
try_from
)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized,
[src]
impl<T> Borrow for T where
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
impl<T> Any for T where
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
fn get_type_id(&self) -> TypeId
🔬 This is a nightly-only experimental API. (get_type_id
)
this method will likely be replaced by an associated static
Gets the TypeId
of self
. Read more
impl<T> BorrowMut for T where
T: ?Sized,
[src]
impl<T> BorrowMut for T where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,