pub struct AssetTransactionResponse {
pub current_round: u64,
pub next_token: Option<String>,
pub transactions: Vec<Transaction>,
}Expand description
Resonse to asset transactions’ endpoint.
Fields§
§current_round: u64Round at which the results were computed.
next_token: Option<String>Used for pagination, when making another request provide this token with the next parameter.
transactions: Vec<Transaction>Transaction list.
Trait Implementations§
Source§impl Clone for AssetTransactionResponse
impl Clone for AssetTransactionResponse
Source§fn clone(&self) -> AssetTransactionResponse
fn clone(&self) -> AssetTransactionResponse
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 Debug for AssetTransactionResponse
impl Debug for AssetTransactionResponse
Source§impl<'de> Deserialize<'de> for AssetTransactionResponse
impl<'de> Deserialize<'de> for AssetTransactionResponse
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 AssetTransactionResponse
impl PartialEq for AssetTransactionResponse
Source§impl Serialize for AssetTransactionResponse
impl Serialize for AssetTransactionResponse
impl StructuralPartialEq for AssetTransactionResponse
Auto Trait Implementations§
impl Freeze for AssetTransactionResponse
impl RefUnwindSafe for AssetTransactionResponse
impl Send for AssetTransactionResponse
impl Sync for AssetTransactionResponse
impl Unpin for AssetTransactionResponse
impl UnwindSafe for AssetTransactionResponse
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