pub struct PcdHeader {
pub version: String,
pub fields: Vec<PcdFieldSpec>,
pub width: usize,
pub height: usize,
pub viewpoint: [f32; 7],
pub points: usize,
pub data: PcdDataKind,
}Expand description
Parsed PCD header.
Fields§
§version: StringPCD version string.
fields: Vec<PcdFieldSpec>Field specifications.
width: usizeCloud width.
height: usizeCloud height.
viewpoint: [f32; 7]Viewpoint as seven float values.
points: usizeNumber of points.
data: PcdDataKindPayload encoding.
Implementations§
Trait Implementations§
impl StructuralPartialEq for PcdHeader
Auto Trait Implementations§
impl Freeze for PcdHeader
impl RefUnwindSafe for PcdHeader
impl Send for PcdHeader
impl Sync for PcdHeader
impl Unpin for PcdHeader
impl UnsafeUnpin for PcdHeader
impl UnwindSafe for PcdHeader
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