pub struct DateTimeRange { /* private fields */ }
Expand description
Representation of the time range of a Series
.
This type is similar to Range<DateTime>
but carries additional functionality used by the
Pattern
trait. There’s usually no need for users of this crate to
instantiate values of this type unless you want to interact with methods of the Pattern
trait
directly.
Implementations§
Trait Implementations§
Source§impl Clone for DateTimeRange
impl Clone for DateTimeRange
Source§fn clone(&self) -> DateTimeRange
fn clone(&self) -> DateTimeRange
Returns a duplicate 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 DateTimeRange
impl Debug for DateTimeRange
Source§impl From<DateTimeRange> for Range<DateTime>
impl From<DateTimeRange> for Range<DateTime>
Source§fn from(range: DateTimeRange) -> Self
fn from(range: DateTimeRange) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DateTimeRange
impl PartialEq for DateTimeRange
Source§impl RangeBounds<DateTime> for DateTimeRange
impl RangeBounds<DateTime> for DateTimeRange
impl Copy for DateTimeRange
impl Eq for DateTimeRange
impl StructuralPartialEq for DateTimeRange
Auto Trait Implementations§
impl Freeze for DateTimeRange
impl RefUnwindSafe for DateTimeRange
impl Send for DateTimeRange
impl Sync for DateTimeRange
impl Unpin for DateTimeRange
impl UnwindSafe for DateTimeRange
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