1use serde::{Deserialize, Serialize}; 2 3/// Number of log files cleared by `<scope> logs clear` (or the global 4/// `logs clear`). Wire: `{"type":"notification","cleared":7}`. 5#[derive(Serialize, Deserialize, Debug, Clone)] 6pub struct Cleared { 7 pub cleared: u64, 8}