Trait ros_pointcloud2::PointConvertible
source · pub trait PointConvertible<T, const SIZE: usize, const DIM: usize, const METADIM: usize>: TryInto<([T; DIM], [PointMeta; METADIM])> + TryFrom<([T; DIM], [PointMeta; METADIM])> + MetaNames<METADIM> + Clonewhere
T: FromBytes,{ }Expand description
Trait to convert a point to a tuple of coordinates and meta data. Implement this trait for your point type to use the conversion.
Object Safety§
This trait is not object safe.