pub struct OrderChargesResult {
pub transaction_type: TransactionType,
pub trading_symbol: String,
pub exchange: Exchange,
pub variety: Variety,
pub product: Product,
pub order_type: OrderType,
pub quantity: u32,
pub price: f64,
pub charges: ChargesBreakdown,
}
Expand description
Response item for virtual contract note (/charges/orders)
Fields§
§transaction_type: TransactionType
§trading_symbol: String
§exchange: Exchange
§variety: Variety
§product: Product
§order_type: OrderType
§quantity: u32
§price: f64
§charges: ChargesBreakdown
Trait Implementations§
Source§impl Clone for OrderChargesResult
impl Clone for OrderChargesResult
Source§fn clone(&self) -> OrderChargesResult
fn clone(&self) -> OrderChargesResult
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 Debug for OrderChargesResult
impl Debug for OrderChargesResult
Source§impl<'de> Deserialize<'de> for OrderChargesResult
impl<'de> Deserialize<'de> for OrderChargesResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for OrderChargesResult
impl RefUnwindSafe for OrderChargesResult
impl Send for OrderChargesResult
impl Sync for OrderChargesResult
impl Unpin for OrderChargesResult
impl UnwindSafe for OrderChargesResult
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