pub struct CoinActivity {
pub activity_type: String,
pub amount: Option<String>,
pub coin_type: String,
}Available on crate feature
indexer only.Expand description
Coin activity from the indexer.
Fields§
§activity_type: StringActivity type.
amount: Option<String>Amount.
coin_type: StringCoin type.
Trait Implementations§
Source§impl Clone for CoinActivity
impl Clone for CoinActivity
Source§fn clone(&self) -> CoinActivity
fn clone(&self) -> CoinActivity
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 CoinActivity
impl Debug for CoinActivity
Source§impl<'de> Deserialize<'de> for CoinActivity
impl<'de> Deserialize<'de> for CoinActivity
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 CoinActivity
impl RefUnwindSafe for CoinActivity
impl Send for CoinActivity
impl Sync for CoinActivity
impl Unpin for CoinActivity
impl UnwindSafe for CoinActivity
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