ros_pointcloud2 0.6.0

Customizable conversions for working with sensor_msgs/PointCloud2.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Commonly used types and traits for predefined and custom point conversions.
pub use crate::{
    FieldDatatype, FromBytes, GetFieldDatatype, IPoint, LayoutDescription, LayoutField,
    MsgConversionError, PointCloud2Msg, PointConvertible, PointDataBuffer,
};

pub use crate::points::*;
pub use crate::ros::*;

#[cfg(feature = "rayon")]
pub use rayon::prelude::*;

#[cfg(feature = "derive")]
pub use rpcl2_derive::*;