1
2
3
4
5
6
7
8
9
10
11
12
use ecoord::FrameId;

#[derive(Debug, Default, Clone, Eq, PartialEq, Hash)]
pub struct PointCloudInfo {
    pub frame_id: Option<FrameId>,
}

impl PointCloudInfo {
    pub fn new(frame_id: Option<FrameId>) -> Self {
        Self { frame_id }
    }
}