pub struct RecurringPriceRecurringResponse {Show 31 fields
pub close_tx: String,
pub closed_by: String,
pub created_at: DateTime<Utc>,
pub estimated_usdc_value_spent: String,
pub in_deposited: String,
pub in_left: String,
pub in_used: String,
pub in_withdrawn: String,
pub incremental_usd_value: String,
pub input_mint: String,
pub open_tx: String,
pub order_interval: String,
pub order_key: String,
pub out_received: String,
pub out_withdrawn: String,
pub output_mint: String,
pub raw_estimated_usdc_value_spent: String,
pub raw_in_deposited: String,
pub raw_in_left: String,
pub raw_in_used: String,
pub raw_in_withdrawn: String,
pub raw_incremental_usd_value: String,
pub raw_out_received: String,
pub raw_out_withdrawn: String,
pub raw_supposed_usd_value: String,
pub start_at: DateTime<Utc>,
pub status: String,
pub supposed_usd_value: String,
pub trades: Vec<RecurringOrderHistoryResponse>,
pub updated_at: DateTime<Utc>,
pub user_pubkey: String,
}Expand description
DEPRECATED: Price-based recurring orders are deprecated
Fields§
§close_tx: String§closed_by: String§created_at: DateTime<Utc>§estimated_usdc_value_spent: String§in_deposited: String§in_left: String§in_used: StringAmount used to fulfill orders
in_withdrawn: String§incremental_usd_value: String§input_mint: String§open_tx: String§order_interval: String§order_key: String§out_received: StringAmount received in escrow without auto-withdraw enabled
out_withdrawn: StringAmount withdrawn from escrow account with/without auto-withdraw enabled
output_mint: String§raw_estimated_usdc_value_spent: String§raw_in_deposited: String§raw_in_left: String§raw_in_used: StringAmount used to fulfill orders
raw_in_withdrawn: String§raw_incremental_usd_value: String§raw_out_received: StringAmount received in escrow without auto-withdraw enabled
raw_out_withdrawn: StringAmount withdrawn from escrow account with/without auto-withdraw enabled
raw_supposed_usd_value: String§start_at: DateTime<Utc>§status: String§supposed_usd_value: String§trades: Vec<RecurringOrderHistoryResponse>§updated_at: DateTime<Utc>§user_pubkey: StringTrait Implementations§
Source§impl Clone for RecurringPriceRecurringResponse
impl Clone for RecurringPriceRecurringResponse
Source§fn clone(&self) -> RecurringPriceRecurringResponse
fn clone(&self) -> RecurringPriceRecurringResponse
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 RecurringPriceRecurringResponse
impl<'de> Deserialize<'de> for RecurringPriceRecurringResponse
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 RecurringPriceRecurringResponse
impl RefUnwindSafe for RecurringPriceRecurringResponse
impl Send for RecurringPriceRecurringResponse
impl Sync for RecurringPriceRecurringResponse
impl Unpin for RecurringPriceRecurringResponse
impl UnsafeUnpin for RecurringPriceRecurringResponse
impl UnwindSafe for RecurringPriceRecurringResponse
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