struct BondTradeReminderOut {
tradeable: Option<BondReminderItemOut>,
complex_product: Option<BondReminderItemOut>,
high_risk: Option<BondReminderItemOut>,
sell_tradeable: Option<BondReminderItemOut>,
pre_qualification: Option<BondReminderItemOut>,
}Fields§
§tradeable: Option<BondReminderItemOut>是否可买入 (0=不可, 1=可)
complex_product: Option<BondReminderItemOut>复杂产品 (0=否, 1=是)
high_risk: Option<BondReminderItemOut>高风险预警 (0=否, 1=是)
sell_tradeable: Option<BondReminderItemOut>是否可卖出 (0=不可, 1=可)
pre_qualification: Option<BondReminderItemOut>是否需要非 AI 资格预审 (0=否, 1=是)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BondTradeReminderOut
impl RefUnwindSafe for BondTradeReminderOut
impl Send for BondTradeReminderOut
impl Sync for BondTradeReminderOut
impl Unpin for BondTradeReminderOut
impl UnsafeUnpin for BondTradeReminderOut
impl UnwindSafe for BondTradeReminderOut
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