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