我已经定义了ProcessState
结构:
#[derive(Clone, Debug, PartialEq, Default)]
pub struct ProcessState {
pub file_sample: FileSample,
pub estimate: Estimate,
pub estimate_cache: HashMap<String, Estimate>,
pub total_count: u64,
pub systems: HashMap<String, SystemState>,
pub aggregate_clock: u64,
pub aggregate_mean: f64,
pub file_samples: VecDeque<FileSample>,
}
如何在此上使用parse_from_bytes
函数?为了使用此方法,我需要为我的结构定义一个原型消息吗?
答案 0 :(得分:1)