pub struct QueryRecentRecurringEventResult {Show 13 fields
pub amount: f64,
pub client_instruction_id: f64,
pub currency: String,
pub description: Option<String>,
pub ib_reference_id: Option<f64>,
pub instruction_id: f64,
pub instruction_status: InstructionResultInstructionStatus,
pub instruction_type: InstructionResultInstructionType,
pub method: String,
pub recurring_instruction_name: String,
pub recurring_transaction_status: String,
pub recurring_transaction_type: String,
pub transaction_history: QueryRecentRecurringEventResultTransactionHistory,
}Fields§
§amount: f64§client_instruction_id: f64- Example:
1012983.0
currency: String§description: Option<String>- Example:
Some("Please poll for status after 10 minutes".to_string())
ib_reference_id: Option<f64>- Example:
Some(23456745.0)
instruction_id: f64- Example:
45123654.0
instruction_status: InstructionResultInstructionStatus- Example:
"PENDING"
instruction_type: InstructionResultInstructionType- Example:
"INTERNAL_CASH_TRANSFER"
method: String§recurring_instruction_name: String§recurring_transaction_status: String§recurring_transaction_type: String§transaction_history: QueryRecentRecurringEventResultTransactionHistoryTrait Implementations§
Source§impl Clone for QueryRecentRecurringEventResult
impl Clone for QueryRecentRecurringEventResult
Source§fn clone(&self) -> QueryRecentRecurringEventResult
fn clone(&self) -> QueryRecentRecurringEventResult
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<'de> Deserialize<'de> for QueryRecentRecurringEventResult
impl<'de> Deserialize<'de> for QueryRecentRecurringEventResult
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
Source§impl PartialEq for QueryRecentRecurringEventResult
impl PartialEq for QueryRecentRecurringEventResult
Source§fn eq(&self, other: &QueryRecentRecurringEventResult) -> bool
fn eq(&self, other: &QueryRecentRecurringEventResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for QueryRecentRecurringEventResult
Auto Trait Implementations§
impl Freeze for QueryRecentRecurringEventResult
impl RefUnwindSafe for QueryRecentRecurringEventResult
impl Send for QueryRecentRecurringEventResult
impl Sync for QueryRecentRecurringEventResult
impl Unpin for QueryRecentRecurringEventResult
impl UnsafeUnpin for QueryRecentRecurringEventResult
impl UnwindSafe for QueryRecentRecurringEventResult
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