pub struct HolderActivity {
pub new_holders_24h: u64,
pub exited_holders_24h: u64,
pub net_holder_change_24h: i64,
pub avg_buy_size_24h: f64,
pub avg_sell_size_24h: f64,
pub holder_growth_rate_7d: f64,
}Expand description
Recent holder activity metrics
Fields§
§new_holders_24h: u64New holders in last 24h
exited_holders_24h: u64Holders who sold in last 24h
net_holder_change_24h: i64Net holder change in 24h
avg_buy_size_24h: f64Average buy size in last 24h (USD)
avg_sell_size_24h: f64Average sell size in last 24h (USD)
holder_growth_rate_7d: f64Holder growth rate (7-day)
Trait Implementations§
Source§impl Clone for HolderActivity
impl Clone for HolderActivity
Source§fn clone(&self) -> HolderActivity
fn clone(&self) -> HolderActivity
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 HolderActivity
impl Debug for HolderActivity
Source§impl<'de> Deserialize<'de> for HolderActivity
impl<'de> Deserialize<'de> for HolderActivity
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 JsonSchema for HolderActivity
impl JsonSchema for HolderActivity
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for HolderActivity
impl RefUnwindSafe for HolderActivity
impl Send for HolderActivity
impl Sync for HolderActivity
impl Unpin for HolderActivity
impl UnwindSafe for HolderActivity
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