pub struct MappingInterval {
pub start_date: Date,
pub end_date: Date,
pub symbol: String,
}
Expand description
The resolved symbol for a date range.
Fields§
§start_date: Date
UTC start date of interval.
end_date: Date
UTC end date of interval.
symbol: String
The resolved symbol for this interval.
Trait Implementations§
Source§impl Clone for MappingInterval
impl Clone for MappingInterval
Source§fn clone(&self) -> MappingInterval
fn clone(&self) -> MappingInterval
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MappingInterval
impl Debug for MappingInterval
Source§impl PartialEq for MappingInterval
impl PartialEq for MappingInterval
Source§impl Serialize for MappingInterval
impl Serialize for MappingInterval
impl Eq for MappingInterval
impl StructuralPartialEq for MappingInterval
Auto Trait Implementations§
impl Freeze for MappingInterval
impl RefUnwindSafe for MappingInterval
impl Send for MappingInterval
impl Sync for MappingInterval
impl Unpin for MappingInterval
impl UnwindSafe for MappingInterval
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