pub struct FoundDateTimeList(/* private fields */);
Available on crate feature
alloc
only.Expand description
List containing the found date times created by the DateTime::find
method.
It can be empty if no local time type was found for the provided date, time and time zone.
Implementations§
Source§impl FoundDateTimeList
impl FoundDateTimeList
Sourcepub fn into_inner(self) -> Vec<FoundDateTimeKind>
pub fn into_inner(self) -> Vec<FoundDateTimeKind>
Extracts and returns the inner list of found date times
Trait Implementations§
Source§impl Clone for FoundDateTimeList
impl Clone for FoundDateTimeList
Source§fn clone(&self) -> FoundDateTimeList
fn clone(&self) -> FoundDateTimeList
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for FoundDateTimeList
impl Debug for FoundDateTimeList
Source§impl Default for FoundDateTimeList
impl Default for FoundDateTimeList
Source§fn default() -> FoundDateTimeList
fn default() -> FoundDateTimeList
Returns the “default value” for a type. Read more
Source§impl PartialEq for FoundDateTimeList
impl PartialEq for FoundDateTimeList
impl StructuralPartialEq for FoundDateTimeList
Auto Trait Implementations§
impl Freeze for FoundDateTimeList
impl RefUnwindSafe for FoundDateTimeList
impl Send for FoundDateTimeList
impl Sync for FoundDateTimeList
impl Unpin for FoundDateTimeList
impl UnwindSafe for FoundDateTimeList
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more