struct BondReminderItemOut {
value: i32,
title: String,
text: String,
reminder_level: i32,
url_id: i64,
}Fields§
§value: i320/1 标识值 (含义见各字段注释)
title: String§text: String§reminder_level: i320=无提醒, 1=弱(底部文案), 2=中(按钮弹窗), 3=强(进详情页弹窗)
url_id: i64Trait Implementations§
Auto Trait Implementations§
impl Freeze for BondReminderItemOut
impl RefUnwindSafe for BondReminderItemOut
impl Send for BondReminderItemOut
impl Sync for BondReminderItemOut
impl Unpin for BondReminderItemOut
impl UnsafeUnpin for BondReminderItemOut
impl UnwindSafe for BondReminderItemOut
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