pub struct CCPreviousAssetSymbol {
pub symbol: Option<String>,
pub symbol_usage_start_date: Option<i64>,
pub symbol_usage_end_date: Option<i64>,
pub description: Option<String>,
}
Fields§
§symbol: Option<String>
A symbol this asset was previously associated with.
symbol_usage_start_date: Option<i64>
Indicates the date this past symbol started being used.
symbol_usage_end_date: Option<i64>
Indicates the date this past symbol stopped being used.
description: Option<String>
A description for why this symbol existed or was changed.
Trait Implementations§
Source§impl Debug for CCPreviousAssetSymbol
impl Debug for CCPreviousAssetSymbol
Source§impl<'de> Deserialize<'de> for CCPreviousAssetSymbol
impl<'de> Deserialize<'de> for CCPreviousAssetSymbol
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
Auto Trait Implementations§
impl Freeze for CCPreviousAssetSymbol
impl RefUnwindSafe for CCPreviousAssetSymbol
impl Send for CCPreviousAssetSymbol
impl Sync for CCPreviousAssetSymbol
impl Unpin for CCPreviousAssetSymbol
impl UnwindSafe for CCPreviousAssetSymbol
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