pub struct PointCloud2 {
pub header: Header,
pub height: u32,
pub width: u32,
pub fields: Vec<PointField>,
pub is_bigendian: bool,
pub point_step: u32,
pub row_step: u32,
pub data: Vec<u8>,
pub is_dense: bool,
}
Fields§
§header: Header
§height: u32
§width: u32
§fields: Vec<PointField>
§is_bigendian: bool
§point_step: u32
§row_step: u32
§data: Vec<u8>
§is_dense: bool
Trait Implementations§
Source§impl Clone for PointCloud2
impl Clone for PointCloud2
Source§fn clone(&self) -> PointCloud2
fn clone(&self) -> PointCloud2
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for PointCloud2
impl Debug for PointCloud2
Source§impl Default for PointCloud2
impl Default for PointCloud2
Source§impl<'de> Deserialize<'de> for PointCloud2
impl<'de> Deserialize<'de> for PointCloud2
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PointCloud2
impl PartialEq for PointCloud2
Source§impl Serialize for PointCloud2
impl Serialize for PointCloud2
impl Message for PointCloud2
impl StructuralPartialEq for PointCloud2
Auto Trait Implementations§
impl Freeze for PointCloud2
impl RefUnwindSafe for PointCloud2
impl Send for PointCloud2
impl Sync for PointCloud2
impl Unpin for PointCloud2
impl UnwindSafe for PointCloud2
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more