1use crate::common::{Depth, Gas, Time}; 2 3#[derive(Debug)] 4pub struct RecordData<'a> { 5 pub depth: Depth, 6 pub time: Time, 7 pub gas: &'a Gas, 8}