pub struct TemporalExtent {
pub interval: Vec<Vec<Option<DateTime<Utc>>>>,
}Expand description
The temporal component of a STAC Extent.
Fields§
§interval: Vec<Vec<Option<DateTime<Utc>>>>A list of time intervals, where None indicates an open-ended interval.
Trait Implementations§
Source§impl Clone for TemporalExtent
impl Clone for TemporalExtent
Source§fn clone(&self) -> TemporalExtent
fn clone(&self) -> TemporalExtent
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 TemporalExtent
impl Debug for TemporalExtent
Source§impl<'de> Deserialize<'de> for TemporalExtent
impl<'de> Deserialize<'de> for TemporalExtent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for TemporalExtent
impl RefUnwindSafe for TemporalExtent
impl Send for TemporalExtent
impl Sync for TemporalExtent
impl Unpin for TemporalExtent
impl UnwindSafe for TemporalExtent
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