pub struct PcdHeader {
pub version: String,
pub fields: Vec<String>,
pub sizes: Vec<usize>,
pub types: Vec<char>,
pub counts: Vec<usize>,
pub width: u32,
pub height: u32,
pub viewpoint: [f64; 7],
pub points: usize,
pub data: DataFormat,
}Fields§
§version: String§fields: Vec<String>§sizes: Vec<usize>§types: Vec<char>§counts: Vec<usize>§width: u32§height: u32§viewpoint: [f64; 7]§points: usize§data: DataFormatImplementations§
Source§impl PcdHeader
impl PcdHeader
pub fn is_organized(&self) -> bool
pub fn point_step(&self) -> usize
pub fn total_point_step(&self) -> usize
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PcdHeader
impl RefUnwindSafe for PcdHeader
impl Send for PcdHeader
impl Sync for PcdHeader
impl Unpin 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