pub struct SubscriptionsTransactionListResponse(pub Vec<Transaction>);Expand description
SubscriptionsTransactionListResponse — the subscription transactions endpoint returns a bare
JSON array of transactions (not a paginated object), so this is a transparent newtype over the
list. Access the inner items via .0.
Tuple Fields§
§0: Vec<Transaction>Trait Implementations§
Source§impl Clone for SubscriptionsTransactionListResponse
impl Clone for SubscriptionsTransactionListResponse
Source§fn clone(&self) -> SubscriptionsTransactionListResponse
fn clone(&self) -> SubscriptionsTransactionListResponse
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<'de> Deserialize<'de> for SubscriptionsTransactionListResponse
impl<'de> Deserialize<'de> for SubscriptionsTransactionListResponse
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
Auto Trait Implementations§
impl Freeze for SubscriptionsTransactionListResponse
impl RefUnwindSafe for SubscriptionsTransactionListResponse
impl Send for SubscriptionsTransactionListResponse
impl Sync for SubscriptionsTransactionListResponse
impl Unpin for SubscriptionsTransactionListResponse
impl UnsafeUnpin for SubscriptionsTransactionListResponse
impl UnwindSafe for SubscriptionsTransactionListResponse
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