struct BondSingleAssetOut {Show 17 fields
market_value: String,
today_incomes: String,
position_incomes: String,
quantity: String,
cost: String,
expired_time: u64,
next_dividend_time: u64,
dividend_type: u32,
accrued_interest: String,
dividend_option: u32,
notification: Option<BondLegacyNotificationOut>,
notice: Option<BondNoticeOut>,
notice_list: Vec<BondNoticeOut>,
ccy: String,
coupon_cash: String,
position_cost: String,
price: String,
}Fields§
§market_value: String§today_incomes: String§position_incomes: String§quantity: String§cost: String§expired_time: u64epoch 秒 (0=未知)
next_dividend_time: u64§dividend_type: u320=不派息, 1=每年1次, 2=每年2次, 3=每年4次, 4=每月1次, 5=5年1次, 6=2年1次
accrued_interest: String§dividend_option: u321=固定, 2=不固定
notification: Option<BondLegacyNotificationOut>§notice: Option<BondNoticeOut>§notice_list: Vec<BondNoticeOut>§ccy: String§coupon_cash: String§position_cost: String§price: String中间价 (without accrued interest)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BondSingleAssetOut
impl RefUnwindSafe for BondSingleAssetOut
impl Send for BondSingleAssetOut
impl Sync for BondSingleAssetOut
impl Unpin for BondSingleAssetOut
impl UnsafeUnpin for BondSingleAssetOut
impl UnwindSafe for BondSingleAssetOut
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