pub struct Sell {
pub balance_after: Option<f64>,
pub contract_id: Option<i64>,
pub reference_id: Option<i64>,
pub sold_for: Option<String>,
pub transaction_id: Option<i64>,
}
Expand description
Receipt for the transaction
Fields§
§balance_after: Option<f64>
New account balance after completion of the sale\n
contract_id: Option<i64>
Internal contract identifier for the sold contract\n
reference_id: Option<i64>
Internal transaction identifier for the corresponding buy transaction\n
sold_for: Option<String>
Actual effected sale price\n
transaction_id: Option<i64>
Internal transaction identifier for the sale transaction\n
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Sell
impl<'de> Deserialize<'de> for Sell
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 Sell
impl RefUnwindSafe for Sell
impl Send for Sell
impl Sync for Sell
impl Unpin for Sell
impl UnwindSafe for Sell
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