pub struct TemporalExtent {
pub start: String,
pub end: String,
}Expand description
A temporal range of applicability.
WKT2 keyword: TIMEEXTENT.
Fields§
§start: StringThe start of the temporal range. Either a date/time string (e.g. “2013-01-01”) or descriptive text (e.g. “Jurassic”).
end: StringThe end of the temporal range.
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 Display for TemporalExtent
impl Display for TemporalExtent
Source§impl PartialEq for TemporalExtent
impl PartialEq for TemporalExtent
impl StructuralPartialEq for TemporalExtent
Auto Trait Implementations§
impl Freeze for TemporalExtent
impl RefUnwindSafe for TemporalExtent
impl Send for TemporalExtent
impl Sync for TemporalExtent
impl Unpin for TemporalExtent
impl UnsafeUnpin 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