pub struct BundleDetails {
pub bundle_analysis: Option<BundleAnalysis>,
pub holding_amount: Option<i64>,
pub holding_percentage: Option<f64>,
pub token_percentage: Option<f64>,
pub total_sol: Option<f64>,
pub total_tokens: Option<i64>,
pub unique_wallets: Option<i32>,
pub wallet_categories: Option<HashMap<String, String>>,
pub wallet_info: Option<HashMap<String, WalletInfo>>,
}Expand description
Details about a specific bundle
Fields§
§bundle_analysis: Option<BundleAnalysis>Analysis of the bundle
holding_amount: Option<i64>Amount of tokens held within the bundle
holding_percentage: Option<f64>Percentage of total tokens held within the bundle
token_percentage: Option<f64>Percentage of the total token supply within the bundle
total_sol: Option<f64>Total SOL value of the bundle
total_tokens: Option<i64>Total number of tokens within the bundle
unique_wallets: Option<i32>Number of unique wallets interacting with the bundle
wallet_categories: Option<HashMap<String, String>>Categories of wallets (e.g., “sniper”, “regular”), keyed by wallet address
wallet_info: Option<HashMap<String, WalletInfo>>Information about individual wallets, keyed by wallet address
Trait Implementations§
Source§impl Clone for BundleDetails
impl Clone for BundleDetails
Source§fn clone(&self) -> BundleDetails
fn clone(&self) -> BundleDetails
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 BundleDetails
impl Debug for BundleDetails
Source§impl<'de> Deserialize<'de> for BundleDetails
impl<'de> Deserialize<'de> for BundleDetails
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 BundleDetails
impl JsonSchema for BundleDetails
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 BundleDetails
impl RefUnwindSafe for BundleDetails
impl Send for BundleDetails
impl Sync for BundleDetails
impl Unpin for BundleDetails
impl UnwindSafe for BundleDetails
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