pub struct SLBFee {Show 16 fields
pub account_id: String,
pub acct_alias: Option<String>,
pub model: Option<String>,
pub symbol: Option<String>,
pub description: Option<String>,
pub conid: Option<String>,
pub asset_category: Option<AssetCategory>,
pub value_date: Option<NaiveDate>,
pub start_date: Option<NaiveDate>,
pub quantity: Option<Decimal>,
pub collateral_amount: Option<Decimal>,
pub fee_rate: Option<Decimal>,
pub fee: Option<Decimal>,
pub carry_charge: Option<Decimal>,
pub currency: Option<String>,
pub fx_rate_to_base: Option<Decimal>,
}Expand description
Securities lending fee
Fields§
§account_id: StringAccount ID
acct_alias: Option<String>Account alias
model: Option<String>Model
symbol: Option<String>Symbol
description: Option<String>Description
conid: Option<String>Contract ID
asset_category: Option<AssetCategory>Asset category
value_date: Option<NaiveDate>Value date
start_date: Option<NaiveDate>Start date
quantity: Option<Decimal>Quantity
collateral_amount: Option<Decimal>Collateral amount
fee_rate: Option<Decimal>Fee rate
fee: Option<Decimal>Fee
carry_charge: Option<Decimal>Carry charge
currency: Option<String>Currency
fx_rate_to_base: Option<Decimal>FX rate to base
Trait Implementations§
Source§impl<'de> Deserialize<'de> for SLBFee
impl<'de> Deserialize<'de> for SLBFee
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 StructuralPartialEq for SLBFee
Auto Trait Implementations§
impl Freeze for SLBFee
impl RefUnwindSafe for SLBFee
impl Send for SLBFee
impl Sync for SLBFee
impl Unpin for SLBFee
impl UnwindSafe for SLBFee
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