pub struct InstrumentPositionResponse {
pub position: Option<Box<Position>>,
pub last_transaction_id: Option<String>,
}Fields§
§position: Option<Box<Position>>§last_transaction_id: Option<String>The ID of the most recent Transaction created for the Account
Implementations§
Source§impl InstrumentPositionResponse
impl InstrumentPositionResponse
pub fn new() -> InstrumentPositionResponse
Trait Implementations§
Source§impl Clone for InstrumentPositionResponse
impl Clone for InstrumentPositionResponse
Source§fn clone(&self) -> InstrumentPositionResponse
fn clone(&self) -> InstrumentPositionResponse
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 Debug for InstrumentPositionResponse
impl Debug for InstrumentPositionResponse
Source§impl Default for InstrumentPositionResponse
impl Default for InstrumentPositionResponse
Source§fn default() -> InstrumentPositionResponse
fn default() -> InstrumentPositionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InstrumentPositionResponse
impl<'de> Deserialize<'de> for InstrumentPositionResponse
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
impl StructuralPartialEq for InstrumentPositionResponse
Auto Trait Implementations§
impl Freeze for InstrumentPositionResponse
impl RefUnwindSafe for InstrumentPositionResponse
impl Send for InstrumentPositionResponse
impl Sync for InstrumentPositionResponse
impl Unpin for InstrumentPositionResponse
impl UnsafeUnpin for InstrumentPositionResponse
impl UnwindSafe for InstrumentPositionResponse
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