pub struct DailyMevTips {
pub day: DateTime<Utc>,
pub count_mev_tips: u64,
pub jito_tips: f64,
pub tippers: u64,
pub validator_tips: f64,
}Expand description
Daily MEV tips data
Fields§
§day: DateTime<Utc>Date of the tips
count_mev_tips: u64Number of MEV tips
jito_tips: f64Jito tips amount (SOL)
tippers: u64Number of unique tippers
validator_tips: f64Validator tips amount (SOL)
Trait Implementations§
Source§impl Clone for DailyMevTips
impl Clone for DailyMevTips
Source§fn clone(&self) -> DailyMevTips
fn clone(&self) -> DailyMevTips
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 DailyMevTips
impl Debug for DailyMevTips
Source§impl<'de> Deserialize<'de> for DailyMevTips
impl<'de> Deserialize<'de> for DailyMevTips
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 DailyMevTips
impl RefUnwindSafe for DailyMevTips
impl Send for DailyMevTips
impl Sync for DailyMevTips
impl Unpin for DailyMevTips
impl UnwindSafe for DailyMevTips
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