pub struct PlyWriter<W: Write> { /* private fields */ }Expand description
Writes point clouds to PLY files or streams.
Implementations§
Trait Implementations§
Source§impl<W: Write> PointWriter for PlyWriter<W>
impl<W: Write> PointWriter for PlyWriter<W>
Source§fn write(
&mut self,
cloud: &PointCloud,
_options: &WriteOptions,
) -> SpatialResult<()>
fn write( &mut self, cloud: &PointCloud, _options: &WriteOptions, ) -> SpatialResult<()>
Writes the point cloud using the provided options.
Auto Trait Implementations§
impl<W> Freeze for PlyWriter<W>where
W: Freeze,
impl<W> RefUnwindSafe for PlyWriter<W>where
W: RefUnwindSafe,
impl<W> Send for PlyWriter<W>where
W: Send,
impl<W> Sync for PlyWriter<W>where
W: Sync,
impl<W> Unpin for PlyWriter<W>where
W: Unpin,
impl<W> UnsafeUnpin for PlyWriter<W>where
W: UnsafeUnpin,
impl<W> UnwindSafe for PlyWriter<W>where
W: UnwindSafe,
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