pub struct GetPaginatedPositionsRequestQuery {
pub model: Option<Value>,
pub sort: Option<Value>,
pub direction: Option<Value>,
pub wait_for_sec_def: Option<bool>,
}Fields§
§model: Option<Value>Name of model
sort: Option<Value>sorting of result positions by specified field. Defaulted to “name” field.
- Example:
Some("name")
direction: Option<Value>Sorting direction. Possible values “a” - ascending, “d” - descending. Defaulted to “a”
- Example:
Some("a")
wait_for_sec_def: Option<bool>Forcing to wait for all security definition to be received. If false, position may not have secDef portion
Trait Implementations§
Source§impl Clone for GetPaginatedPositionsRequestQuery
impl Clone for GetPaginatedPositionsRequestQuery
Source§fn clone(&self) -> GetPaginatedPositionsRequestQuery
fn clone(&self) -> GetPaginatedPositionsRequestQuery
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 PartialEq for GetPaginatedPositionsRequestQuery
impl PartialEq for GetPaginatedPositionsRequestQuery
Source§fn eq(&self, other: &GetPaginatedPositionsRequestQuery) -> bool
fn eq(&self, other: &GetPaginatedPositionsRequestQuery) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetPaginatedPositionsRequestQuery
Auto Trait Implementations§
impl Freeze for GetPaginatedPositionsRequestQuery
impl RefUnwindSafe for GetPaginatedPositionsRequestQuery
impl Send for GetPaginatedPositionsRequestQuery
impl Sync for GetPaginatedPositionsRequestQuery
impl Unpin for GetPaginatedPositionsRequestQuery
impl UnsafeUnpin for GetPaginatedPositionsRequestQuery
impl UnwindSafe for GetPaginatedPositionsRequestQuery
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