pub struct CompressedPointCloud2 {
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 compressed_data: Vec<u8>,
pub is_dense: bool,
pub format: String,
}
Fields§
§header: Header
§height: u32
§width: u32
§fields: Vec<PointField>
§is_bigendian: bool
§point_step: u32
§row_step: u32
§compressed_data: Vec<u8>
§is_dense: bool
§format: String
Trait Implementations§
Source§impl Clone for CompressedPointCloud2
impl Clone for CompressedPointCloud2
Source§fn clone(&self) -> CompressedPointCloud2
fn clone(&self) -> CompressedPointCloud2
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 CompressedPointCloud2
impl Debug for CompressedPointCloud2
Source§impl Default for CompressedPointCloud2
impl Default for CompressedPointCloud2
Source§impl<'de> Deserialize<'de> for CompressedPointCloud2
impl<'de> Deserialize<'de> for CompressedPointCloud2
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 CompressedPointCloud2
impl PartialEq for CompressedPointCloud2
Source§impl Serialize for CompressedPointCloud2
impl Serialize for CompressedPointCloud2
impl Message for CompressedPointCloud2
impl StructuralPartialEq for CompressedPointCloud2
Auto Trait Implementations§
impl Freeze for CompressedPointCloud2
impl RefUnwindSafe for CompressedPointCloud2
impl Send for CompressedPointCloud2
impl Sync for CompressedPointCloud2
impl Unpin for CompressedPointCloud2
impl UnwindSafe for CompressedPointCloud2
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