pub struct TimeOrder {Show 27 fields
pub close_tx: String,
pub created_at: String,
pub cycle_frequency: String,
pub in_amount_per_cycle: String,
pub in_deposited: String,
pub in_used: String,
pub in_withdrawn: String,
pub input_mint: String,
pub max_out_amount: String,
pub min_out_amount: String,
pub open_tx: String,
pub order_key: String,
pub out_received: String,
pub out_withdrawn: String,
pub output_mint: String,
pub raw_in_amount_per_cycl: String,
pub raw_in_deposited: String,
pub raw_in_used: String,
pub raw_in_withdrawn: String,
pub raw_max_out_amount: String,
pub raw_min_out_amount: String,
pub raw_out_received: String,
pub raw_out_withdrawn: String,
pub trades: Vec<Trade>,
pub updated_at: String,
pub user_closed: bool,
pub user_pubkey: String,
}Fields§
§close_tx: String§created_at: String§cycle_frequency: String§in_amount_per_cycle: String§in_deposited: String§in_used: String§in_withdrawn: String§input_mint: String§max_out_amount: String§min_out_amount: String§open_tx: String§order_key: String§out_received: String§out_withdrawn: String§output_mint: String§raw_in_amount_per_cycl: String§raw_in_deposited: String§raw_in_used: String§raw_in_withdrawn: String§raw_max_out_amount: String§raw_min_out_amount: String§raw_out_received: String§raw_out_withdrawn: String§trades: Vec<Trade>§updated_at: String§user_closed: bool§user_pubkey: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for TimeOrder
impl<'de> Deserialize<'de> for TimeOrder
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 TimeOrder
impl RefUnwindSafe for TimeOrder
impl Send for TimeOrder
impl Sync for TimeOrder
impl Unpin for TimeOrder
impl UnsafeUnpin for TimeOrder
impl UnwindSafe for TimeOrder
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