struct CashInfoOut {
currency: Option<i32>,
cash: Option<f64>,
available_balance: Option<f64>,
net_cash_power: Option<f64>,
}Expand description
v1.4.74 C1 BUG-004 Phase 2: 分币种现金(对齐 futu_trd::types::FundsCashInfo)
Fields§
§currency: Option<i32>货币 (1=HKD / 2=USD / 3=CNY / 4=JPY / 5=SGD / 6=AUD / 7=CAD / 8=MYR)
cash: Option<f64>该币种现金结余
available_balance: Option<f64>该币种可提现金额
net_cash_power: Option<f64>该币种现金购买力
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CashInfoOut
impl RefUnwindSafe for CashInfoOut
impl Send for CashInfoOut
impl Sync for CashInfoOut
impl Unpin for CashInfoOut
impl UnsafeUnpin for CashInfoOut
impl UnwindSafe for CashInfoOut
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more