1 2 3 4 5 6 7 8 9 10
//! Pure-Rust COPC writer. mod spill; mod writer; pub use spill::{SpillReader, SpillWriter}; pub use writer::{ convert_las_to_copc_streaming, write_source, write_source_with_cancel, write_streaming_with_cancel, CopcPointFields, CopcPointSource, CopcWriterParams, };