pub struct Symbol<'a> {
pub text: Cow<'a, str>,
pub indices: (u64, u64),
}Expand description
Represents a financial symbol in symbols field of Entities.
Fields§
§text: Cow<'a, str>§indices: (u64, u64)Trait Implementations§
Source§impl<'de: 'a, 'a> Deserialize<'de> for Symbol<'a>
impl<'de: 'a, 'a> Deserialize<'de> for Symbol<'a>
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
impl<'a> Eq for Symbol<'a>
impl<'a> StructuralPartialEq for Symbol<'a>
Auto Trait Implementations§
impl<'a> Freeze for Symbol<'a>
impl<'a> RefUnwindSafe for Symbol<'a>
impl<'a> Send for Symbol<'a>
impl<'a> Sync for Symbol<'a>
impl<'a> Unpin for Symbol<'a>
impl<'a> UnwindSafe for Symbol<'a>
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