pub struct GetPositionByConidRequestPath {
pub accountid: String,
pub conid: i32,
}Fields§
§accountid: StringAccount ID whose position in the given instrument is requested.
- Example:
"DU123456".to_string()
conid: i32Conid of the instrument whose position in the account is requested.
- Example:
265_598i32
Trait Implementations§
Source§impl Clone for GetPositionByConidRequestPath
impl Clone for GetPositionByConidRequestPath
Source§fn clone(&self) -> GetPositionByConidRequestPath
fn clone(&self) -> GetPositionByConidRequestPath
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 GetPositionByConidRequestPath
impl PartialEq for GetPositionByConidRequestPath
Source§fn eq(&self, other: &GetPositionByConidRequestPath) -> bool
fn eq(&self, other: &GetPositionByConidRequestPath) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'v_a> ValidateArgs<'v_a> for GetPositionByConidRequestPath
impl<'v_a> ValidateArgs<'v_a> for GetPositionByConidRequestPath
impl StructuralPartialEq for GetPositionByConidRequestPath
Auto Trait Implementations§
impl Freeze for GetPositionByConidRequestPath
impl RefUnwindSafe for GetPositionByConidRequestPath
impl Send for GetPositionByConidRequestPath
impl Sync for GetPositionByConidRequestPath
impl Unpin for GetPositionByConidRequestPath
impl UnsafeUnpin for GetPositionByConidRequestPath
impl UnwindSafe for GetPositionByConidRequestPath
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