//! CIK (Central Index Key) lookup models.
useserde::{Deserialize, Serialize};/// An entry from the SEC ticker-to-CIK mapping.
////// Maps a stock ticker symbol to its SEC CIK number and company name.
#[derive(Debug, Clone, Serialize, Deserialize)]#[non_exhaustive]pubstructCikEntry{/// CIK number (unique SEC identifier)
pubcik:u64,
/// Ticker symbol
pubticker: String,
/// Company name
pubtitle: String,
}