Full L2 book — replace any cached state.
(market_id, asset_id)
use px_core::WsUpdate; while let Some(update) = updates.next().await { if let WsUpdate::Snapshot { market_id, book, .. } = update? { cache.insert(market_id, book); } }