pub struct SymbolMapping {
pub native: String,
pub intervals: Vec<MappingInterval>,
}
Expand description
A native symbol and its symbol mappings for different time ranges within the query range.
Fields§
§native: String
The native symbol.
intervals: Vec<MappingInterval>
The mappings of native
for different date ranges.
Trait Implementations§
Source§impl Clone for SymbolMapping
impl Clone for SymbolMapping
Source§fn clone(&self) -> SymbolMapping
fn clone(&self) -> SymbolMapping
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 SymbolMapping
impl Debug for SymbolMapping
Source§impl PartialEq for SymbolMapping
impl PartialEq for SymbolMapping
Source§impl Serialize for SymbolMapping
impl Serialize for SymbolMapping
impl Eq for SymbolMapping
impl StructuralPartialEq for SymbolMapping
Auto Trait Implementations§
impl Freeze for SymbolMapping
impl RefUnwindSafe for SymbolMapping
impl Send for SymbolMapping
impl Sync for SymbolMapping
impl Unpin for SymbolMapping
impl UnwindSafe for SymbolMapping
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