pub(crate) struct TradeCheckInput<'a> {
pub(crate) market: &'a str,
pub(crate) code: &'a str,
pub(crate) env: &'a str,
pub(crate) acc_id: Option<u64>,
pub(crate) card_num: Option<&'a str>,
pub(crate) order_type: &'a str,
pub(crate) price: f64,
pub(crate) jp_acc_type: Option<i32>,
}Fields§
§market: &'a str§code: &'a str§env: &'a str§acc_id: Option<u64>§card_num: Option<&'a str>§order_type: &'a str§price: f64§jp_acc_type: Option<i32>Trait Implementations§
Source§impl<'a> Clone for TradeCheckInput<'a>
impl<'a> Clone for TradeCheckInput<'a>
Source§fn clone(&self) -> TradeCheckInput<'a>
fn clone(&self) -> TradeCheckInput<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for TradeCheckInput<'a>
impl<'a> Debug for TradeCheckInput<'a>
impl<'a> Copy for TradeCheckInput<'a>
Auto Trait Implementations§
impl<'a> Freeze for TradeCheckInput<'a>
impl<'a> RefUnwindSafe for TradeCheckInput<'a>
impl<'a> Send for TradeCheckInput<'a>
impl<'a> Sync for TradeCheckInput<'a>
impl<'a> Unpin for TradeCheckInput<'a>
impl<'a> UnsafeUnpin for TradeCheckInput<'a>
impl<'a> UnwindSafe for TradeCheckInput<'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