pub struct RecurringTimeRecurringResponse {Show 27 fields
pub close_tx: String,
pub created_at: DateTime<Utc>,
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_cycle: 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<RecurringOrderHistoryResponse>,
pub updated_at: DateTime<Utc>,
pub user_closed: bool,
pub user_pubkey: String,
}Fields§
§close_tx: String§created_at: DateTime<Utc>§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_cycle: 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<RecurringOrderHistoryResponse>§updated_at: DateTime<Utc>§user_closed: bool§user_pubkey: StringTrait Implementations§
Source§impl Clone for RecurringTimeRecurringResponse
impl Clone for RecurringTimeRecurringResponse
Source§fn clone(&self) -> RecurringTimeRecurringResponse
fn clone(&self) -> RecurringTimeRecurringResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for RecurringTimeRecurringResponse
impl<'de> Deserialize<'de> for RecurringTimeRecurringResponse
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 RecurringTimeRecurringResponse
impl RefUnwindSafe for RecurringTimeRecurringResponse
impl Send for RecurringTimeRecurringResponse
impl Sync for RecurringTimeRecurringResponse
impl Unpin for RecurringTimeRecurringResponse
impl UnsafeUnpin for RecurringTimeRecurringResponse
impl UnwindSafe for RecurringTimeRecurringResponse
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