pub struct TransactionTaxesWrapper {
pub items: Vec<TransactionTax>,
pub details: Vec<TransactionTaxDetail>,
}Expand description
Wrapper for the transaction taxes section
Fields§
§items: Vec<TransactionTax>List of per-transaction taxes
details: Vec<TransactionTaxDetail>Per-transaction tax detail rows (<TransactionTaxDetail>), when the query
requests detail-level breakdown. Modeled from the ibflex spec; this account
emits none, so it is not yet validated against real <TransactionTaxDetail>.
Trait Implementations§
Source§impl Clone for TransactionTaxesWrapper
impl Clone for TransactionTaxesWrapper
Source§fn clone(&self) -> TransactionTaxesWrapper
fn clone(&self) -> TransactionTaxesWrapper
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 TransactionTaxesWrapper
impl Debug for TransactionTaxesWrapper
Source§impl Default for TransactionTaxesWrapper
impl Default for TransactionTaxesWrapper
Source§fn default() -> TransactionTaxesWrapper
fn default() -> TransactionTaxesWrapper
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TransactionTaxesWrapper
impl<'de> Deserialize<'de> for TransactionTaxesWrapper
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 TransactionTaxesWrapper
impl PartialEq for TransactionTaxesWrapper
Source§fn eq(&self, other: &TransactionTaxesWrapper) -> bool
fn eq(&self, other: &TransactionTaxesWrapper) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TransactionTaxesWrapper
impl Serialize for TransactionTaxesWrapper
impl StructuralPartialEq for TransactionTaxesWrapper
Auto Trait Implementations§
impl Freeze for TransactionTaxesWrapper
impl RefUnwindSafe for TransactionTaxesWrapper
impl Send for TransactionTaxesWrapper
impl Sync for TransactionTaxesWrapper
impl Unpin for TransactionTaxesWrapper
impl UnsafeUnpin for TransactionTaxesWrapper
impl UnwindSafe for TransactionTaxesWrapper
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