pub struct Cancel {
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 Cancel
impl<'de> Deserialize<'de> for Cancel
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 Cancel
impl RefUnwindSafe for Cancel
impl Send for Cancel
impl Sync for Cancel
impl Unpin for Cancel
impl UnwindSafe for Cancel
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