CachedFunds

Struct CachedFunds 

Source
pub struct CachedFunds {
Show 27 fields pub power: f64, pub total_assets: f64, pub cash: f64, pub market_val: f64, pub frozen_cash: f64, pub debt_cash: f64, pub avl_withdrawal_cash: f64, pub currency: Option<i32>, pub available_funds: Option<f64>, pub unrealized_pl: Option<f64>, pub realized_pl: Option<f64>, pub risk_level: Option<i32>, pub initial_margin: Option<f64>, pub maintenance_margin: Option<f64>, pub max_power_short: Option<f64>, pub net_cash_power: Option<f64>, pub long_mv: Option<f64>, pub short_mv: Option<f64>, pub pending_asset: Option<f64>, pub max_withdrawal: Option<f64>, pub risk_status: Option<i32>, pub margin_call_margin: Option<f64>, pub securities_assets: Option<f64>, pub fund_assets: Option<f64>, pub bond_assets: Option<f64>, pub cash_info_list: Vec<CachedCashInfo>, pub market_info_list: Vec<CachedMarketInfo>,
}
Expand description

缓存的资金 (对齐 C++ Ndt_Trd_AccFund 全字段)

Fields§

§power: f64§total_assets: f64§cash: f64§market_val: f64§frozen_cash: f64§debt_cash: f64§avl_withdrawal_cash: f64§currency: Option<i32>§available_funds: Option<f64>§unrealized_pl: Option<f64>§realized_pl: Option<f64>§risk_level: Option<i32>§initial_margin: Option<f64>§maintenance_margin: Option<f64>§max_power_short: Option<f64>§net_cash_power: Option<f64>§long_mv: Option<f64>§short_mv: Option<f64>§pending_asset: Option<f64>§max_withdrawal: Option<f64>§risk_status: Option<i32>§margin_call_margin: Option<f64>§securities_assets: Option<f64>§fund_assets: Option<f64>§bond_assets: Option<f64>§cash_info_list: Vec<CachedCashInfo>

分币种现金信息: (currency, cash, avl_withdrawal, net_cash_power)

§market_info_list: Vec<CachedMarketInfo>

分市场资产信息: (trd_market, assets)

Trait Implementations§

Source§

impl Clone for CachedFunds

Source§

fn clone(&self) -> CachedFunds

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for CachedFunds

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for CachedFunds

Source§

fn default() -> CachedFunds

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.