pub struct GetPaginatedPositionsRequestPath {
pub account_id: String,
pub page_id: i32,
}Fields§
§account_id: StringAccount ID whose positions are requested.
- Example:
"DU123456".to_string()
page_id: i32Paginates positions response. Indexed from 0. Max 100 positions returned per page. Defaulted to 0.
- Example:
1i32
Trait Implementations§
Source§impl Clone for GetPaginatedPositionsRequestPath
impl Clone for GetPaginatedPositionsRequestPath
Source§fn clone(&self) -> GetPaginatedPositionsRequestPath
fn clone(&self) -> GetPaginatedPositionsRequestPath
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 GetPaginatedPositionsRequestPath
impl PartialEq for GetPaginatedPositionsRequestPath
Source§fn eq(&self, other: &GetPaginatedPositionsRequestPath) -> bool
fn eq(&self, other: &GetPaginatedPositionsRequestPath) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'v_a> ValidateArgs<'v_a> for GetPaginatedPositionsRequestPath
impl<'v_a> ValidateArgs<'v_a> for GetPaginatedPositionsRequestPath
impl StructuralPartialEq for GetPaginatedPositionsRequestPath
Auto Trait Implementations§
impl Freeze for GetPaginatedPositionsRequestPath
impl RefUnwindSafe for GetPaginatedPositionsRequestPath
impl Send for GetPaginatedPositionsRequestPath
impl Sync for GetPaginatedPositionsRequestPath
impl Unpin for GetPaginatedPositionsRequestPath
impl UnsafeUnpin for GetPaginatedPositionsRequestPath
impl UnwindSafe for GetPaginatedPositionsRequestPath
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