pub struct InstrumentStaticData {
pub notation: Option<String>,
pub currency: Option<String>,
pub settlement_currency: Option<String>,
pub instrument_type: Option<String>,
pub priips_relevant: Option<bool>,
pub kid_available: Option<bool>,
pub shipping_waiver_required: Option<bool>,
pub fund_redemption_limited: Option<bool>,
pub savings_plan_eligibility: Option<String>,
}Expand description
Static data section of an instrument payload.
Fields§
§notation: Option<String>§currency: Option<String>§settlement_currency: Option<String>§instrument_type: Option<String>§priips_relevant: Option<bool>§kid_available: Option<bool>§shipping_waiver_required: Option<bool>§fund_redemption_limited: Option<bool>§savings_plan_eligibility: Option<String>Trait Implementations§
Source§impl Clone for InstrumentStaticData
impl Clone for InstrumentStaticData
Source§fn clone(&self) -> InstrumentStaticData
fn clone(&self) -> InstrumentStaticData
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 InstrumentStaticData
impl Debug for InstrumentStaticData
Source§impl Default for InstrumentStaticData
impl Default for InstrumentStaticData
Source§fn default() -> InstrumentStaticData
fn default() -> InstrumentStaticData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InstrumentStaticData
impl<'de> Deserialize<'de> for InstrumentStaticData
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 InstrumentStaticData
impl RefUnwindSafe for InstrumentStaticData
impl Send for InstrumentStaticData
impl Sync for InstrumentStaticData
impl Unpin for InstrumentStaticData
impl UnsafeUnpin for InstrumentStaticData
impl UnwindSafe for InstrumentStaticData
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