pub struct AlphaWalletEntry {Show 19 fields
pub rank: u32,
pub wallet: String,
pub tokens_traded: u32,
pub wins: u32,
pub losses: u32,
pub win_rate: Option<f64>,
pub net_pnl_sol: f64,
pub total_sol_bought: Option<f64>,
pub total_sol_sold: Option<f64>,
pub roi: Option<f64>,
pub avg_rank: Option<f64>,
pub best_rank: Option<f64>,
pub total_buys: Option<u32>,
pub total_sells: Option<u32>,
pub last_seen: Option<String>,
pub bundle_rate: Option<f64>,
pub buy_size_stddev: Option<f64>,
pub active_hours: Option<f64>,
pub bot_confidence: Option<String>,
}Fields§
§rank: u32§wallet: String§tokens_traded: u32§wins: u32§losses: u32§win_rate: Option<f64>§net_pnl_sol: f64§total_sol_bought: Option<f64>§total_sol_sold: Option<f64>§roi: Option<f64>§avg_rank: Option<f64>§best_rank: Option<f64>§total_buys: Option<u32>§total_sells: Option<u32>§last_seen: Option<String>§bundle_rate: Option<f64>§buy_size_stddev: Option<f64>§active_hours: Option<f64>§bot_confidence: Option<String>Trait Implementations§
Source§impl Clone for AlphaWalletEntry
impl Clone for AlphaWalletEntry
Source§fn clone(&self) -> AlphaWalletEntry
fn clone(&self) -> AlphaWalletEntry
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 AlphaWalletEntry
impl Debug for AlphaWalletEntry
Source§impl<'de> Deserialize<'de> for AlphaWalletEntry
impl<'de> Deserialize<'de> for AlphaWalletEntry
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 AlphaWalletEntry
impl RefUnwindSafe for AlphaWalletEntry
impl Send for AlphaWalletEntry
impl Sync for AlphaWalletEntry
impl Unpin for AlphaWalletEntry
impl UnsafeUnpin for AlphaWalletEntry
impl UnwindSafe for AlphaWalletEntry
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