pub struct PreviousAssetSymbol {
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 Clone for PreviousAssetSymbol
impl Clone for PreviousAssetSymbol
Source§fn clone(&self) -> PreviousAssetSymbol
fn clone(&self) -> PreviousAssetSymbol
Returns a duplicate 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 PreviousAssetSymbol
impl Debug for PreviousAssetSymbol
Source§impl<'de> Deserialize<'de> for PreviousAssetSymbol
impl<'de> Deserialize<'de> for PreviousAssetSymbol
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 PreviousAssetSymbol
impl RefUnwindSafe for PreviousAssetSymbol
impl Send for PreviousAssetSymbol
impl Sync for PreviousAssetSymbol
impl Unpin for PreviousAssetSymbol
impl UnsafeUnpin for PreviousAssetSymbol
impl UnwindSafe for PreviousAssetSymbol
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