pub struct PerformanceRequestBody {
pub acct_ids: Option<Vec<Value>>,
pub period: Option<PerformanceRequestBodyPeriod>,
}Fields§
§acct_ids: Option<Vec<Value>>An array of strings containing each account identifier to retrieve performance details for.
period: Option<PerformanceRequestBodyPeriod>Specify the period for which the account should be analyzed. Available period lengths:
1D- The last 24 hours.7D- The last 7 full days.MTD- Performance since the 1st of the month.1M- A full calendar month from the last full trade day.3M- 3 full calendar months from the last full trade day.6M- 6 full calendar months from the last full trade day.12M- 12 full calendar month from the last full trade day.YTD- Performance since January 1st.
Trait Implementations§
Source§impl Clone for PerformanceRequestBody
impl Clone for PerformanceRequestBody
Source§fn clone(&self) -> PerformanceRequestBody
fn clone(&self) -> PerformanceRequestBody
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PerformanceRequestBody
impl Debug for PerformanceRequestBody
Source§impl Default for PerformanceRequestBody
impl Default for PerformanceRequestBody
Source§impl PartialEq for PerformanceRequestBody
impl PartialEq for PerformanceRequestBody
Source§impl Serialize for PerformanceRequestBody
impl Serialize for PerformanceRequestBody
impl StructuralPartialEq for PerformanceRequestBody
Auto Trait Implementations§
impl Freeze for PerformanceRequestBody
impl RefUnwindSafe for PerformanceRequestBody
impl Send for PerformanceRequestBody
impl Sync for PerformanceRequestBody
impl Unpin for PerformanceRequestBody
impl UnsafeUnpin for PerformanceRequestBody
impl UnwindSafe for PerformanceRequestBody
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