pub struct Trade {Show 15 fields
pub order_key: String,
pub keeper: String,
pub input_mint: String,
pub output_mint: String,
pub input_amount: String,
pub output_amount: String,
pub raw_input_amount: String,
pub raw_output_amount: String,
pub fee_mint: String,
pub fee_amount: String,
pub raw_fee_amount: String,
pub tx_id: String,
pub confirmed_at: String,
pub action: String,
pub product_meta: Option<String>,
}Fields§
§order_key: String§keeper: String§input_mint: String§output_mint: String§input_amount: String§output_amount: String§raw_input_amount: String§raw_output_amount: String§fee_mint: String§fee_amount: String§raw_fee_amount: String§tx_id: String§confirmed_at: String§action: String§product_meta: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Trade
impl<'de> Deserialize<'de> for Trade
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 Trade
impl RefUnwindSafe for Trade
impl Send for Trade
impl Sync for Trade
impl Unpin for Trade
impl UnsafeUnpin for Trade
impl UnwindSafe for Trade
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