pub struct SetPriceReminderCommand<'a> {
pub gateway: &'a str,
pub symbol: &'a str,
pub op: i32,
pub key: Option<i64>,
pub reminder_type: Option<i32>,
pub freq: Option<i32>,
pub value: Option<f64>,
pub note: Option<&'a str>,
pub reminder_session_list: &'a [i32],
}Fields§
§gateway: &'a str§symbol: &'a str§op: i32§key: Option<i64>§reminder_type: Option<i32>§freq: Option<i32>§value: Option<f64>§note: Option<&'a str>§reminder_session_list: &'a [i32]Auto Trait Implementations§
impl<'a> Freeze for SetPriceReminderCommand<'a>
impl<'a> RefUnwindSafe for SetPriceReminderCommand<'a>
impl<'a> Send for SetPriceReminderCommand<'a>
impl<'a> Sync for SetPriceReminderCommand<'a>
impl<'a> Unpin for SetPriceReminderCommand<'a>
impl<'a> UnsafeUnpin for SetPriceReminderCommand<'a>
impl<'a> UnwindSafe for SetPriceReminderCommand<'a>
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