pub struct PageResponseTokenTraderDataItem {
pub address: String,
pub block_timestamp: Option<String>,
pub onchain_created_at: Option<String>,
pub percentile_rank_trade_amount_in_usd: Option<String>,
pub percentile_rank_trade_count: Option<i64>,
pub rank_trade_amount_in_usd: Option<String>,
pub trade_amount_in_native: Option<String>,
pub trade_amount_in_usd: Option<String>,
pub trade_count: Option<i64>,
pub transaction_signature: Option<String>,
}Expand description
Token trader info — mirrors TS TokenTraderDTO
JSON schema
{
"description": "Token trader info — mirrors TS `TokenTraderDTO`",
"type": "object",
"required": [
"address"
],
"properties": {
"address": {
"description": "Wallet address",
"examples": [
"MJKqp326RZCHnAAbew9MDdui3iCKWco7fsK9sVuZTX2"
],
"type": "string"
},
"blockTimestamp": {
"description": "Block timestamp (sniper)",
"examples": [
"2025-01-15T10:30:00Z"
],
"type": "string"
},
"onchainCreatedAt": {
"description": "Onchain account creation time (fresh/dev)",
"examples": [
"2025-01-15T10:30:00Z"
],
"type": "string"
},
"percentileRankTradeAmountInUsd": {
"description": "Percentile rank of trade amount in USD (pro/insider)",
"examples": [
"0.98"
],
"type": "string"
},
"percentileRankTradeCount": {
"description": "Percentile rank of trade count (pro)",
"examples": [
95
],
"type": "integer",
"format": "int64"
},
"rankTradeAmountInUsd": {
"description": "Rank trade amount in USD (insider)",
"examples": [
"0.95"
],
"type": "string"
},
"tradeAmountInNative": {
"description": "Trade amount in native token (pro/insider)",
"examples": [
"1500.50"
],
"type": "string"
},
"tradeAmountInUsd": {
"description": "Trade amount in USD (pro/insider)",
"examples": [
"45000.00"
],
"type": "string"
},
"tradeCount": {
"description": "Trade count (pro/insider)",
"examples": [
42
],
"type": "integer",
"format": "int64"
},
"transactionSignature": {
"description": "Transaction signature (sandwish/bundle/sniper)",
"examples": [
"5dJ1BxPiFT7w7aBdkxNy2jopGZnZoLwRwS8e9GkEXrVz..."
],
"type": "string"
}
}
}Fields§
§address: StringWallet address
block_timestamp: Option<String>Block timestamp (sniper)
onchain_created_at: Option<String>Onchain account creation time (fresh/dev)
percentile_rank_trade_amount_in_usd: Option<String>Percentile rank of trade amount in USD (pro/insider)
percentile_rank_trade_count: Option<i64>Percentile rank of trade count (pro)
rank_trade_amount_in_usd: Option<String>Rank trade amount in USD (insider)
trade_amount_in_native: Option<String>Trade amount in native token (pro/insider)
trade_amount_in_usd: Option<String>Trade amount in USD (pro/insider)
trade_count: Option<i64>Trade count (pro/insider)
transaction_signature: Option<String>Transaction signature (sandwish/bundle/sniper)
Implementations§
Trait Implementations§
Source§impl Clone for PageResponseTokenTraderDataItem
impl Clone for PageResponseTokenTraderDataItem
Source§fn clone(&self) -> PageResponseTokenTraderDataItem
fn clone(&self) -> PageResponseTokenTraderDataItem
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 PageResponseTokenTraderDataItem
impl<'de> Deserialize<'de> for PageResponseTokenTraderDataItem
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 From<&PageResponseTokenTraderDataItem> for PageResponseTokenTraderDataItem
impl From<&PageResponseTokenTraderDataItem> for PageResponseTokenTraderDataItem
Source§fn from(value: &PageResponseTokenTraderDataItem) -> Self
fn from(value: &PageResponseTokenTraderDataItem) -> Self
Converts to this type from the input type.
Source§impl From<PageResponseTokenTraderDataItem> for PageResponseTokenTraderDataItem
impl From<PageResponseTokenTraderDataItem> for PageResponseTokenTraderDataItem
Source§fn from(value: PageResponseTokenTraderDataItem) -> Self
fn from(value: PageResponseTokenTraderDataItem) -> Self
Converts to this type from the input type.
Source§impl TryFrom<PageResponseTokenTraderDataItem> for PageResponseTokenTraderDataItem
impl TryFrom<PageResponseTokenTraderDataItem> for PageResponseTokenTraderDataItem
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: PageResponseTokenTraderDataItem,
) -> Result<Self, ConversionError>
fn try_from( value: PageResponseTokenTraderDataItem, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for PageResponseTokenTraderDataItem
impl RefUnwindSafe for PageResponseTokenTraderDataItem
impl Send for PageResponseTokenTraderDataItem
impl Sync for PageResponseTokenTraderDataItem
impl Unpin for PageResponseTokenTraderDataItem
impl UnsafeUnpin for PageResponseTokenTraderDataItem
impl UnwindSafe for PageResponseTokenTraderDataItem
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