/// Similar Symbol module
////// Contains the SimilarSymbol type representing a recommended symbol.
useserde::{Deserialize, Serialize};/// A similar/recommended symbol with score
////// Note: This struct cannot be manually constructed - obtain via `Ticker::recommendations()`.
#[non_exhaustive]#[derive(Debug, Clone, Serialize, Deserialize)]#[cfg_attr(feature ="dataframe",derive(crate::ToDataFrame))]pubstructSimilarSymbol{/// Stock symbol
pubsymbol: String,
/// Recommendation score (higher = more similar)
pubscore:f64,
}