pub struct SymbolMapping {
pub raw_symbol: String,
pub intervals: Vec<MappingInterval>,
}Expand description
A raw symbol and its symbol mappings for different time ranges within the query range.
Fields§
§raw_symbol: StringThe stype_in symbol.
intervals: Vec<MappingInterval>The mappings of raw_symbol to stype_out 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 copy 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 SymbolMapping
impl Debug for SymbolMapping
Source§impl<'de> Deserialize<'de> for SymbolMapping
impl<'de> Deserialize<'de> for SymbolMapping
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
Source§impl<'py> FromPyObject<'py> for SymbolMapping
impl<'py> FromPyObject<'py> for SymbolMapping
Source§impl<'py> IntoPyObject<'py> for SymbolMapping
Available on crate feature python only.
impl<'py> IntoPyObject<'py> for SymbolMapping
Available on crate feature
python only.Source§impl PartialEq for SymbolMapping
impl PartialEq 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<'py, T> FromPyObjectBound<'_, 'py> for Twhere
T: FromPyObject<'py>,
impl<'py, T> FromPyObjectBound<'_, 'py> for Twhere
T: FromPyObject<'py>,
Source§impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
impl<'py, T> IntoPyObjectExt<'py> for Twhere
T: IntoPyObject<'py>,
Source§fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
fn into_bound_py_any(self, py: Python<'py>) -> Result<Bound<'py, PyAny>, PyErr>
Converts
self into an owned Python object, dropping type information.