pub struct MvpPipeline { /* private fields */ }Expand description
Builder-style MVP pipeline runner.
Implementations§
Source§impl MvpPipeline
impl MvpPipeline
Sourcepub fn new(config: MvpPipelineConfig) -> Self
pub fn new(config: MvpPipelineConfig) -> Self
Creates a pipeline from config.
Sourcepub fn config(&self) -> &MvpPipelineConfig
pub fn config(&self) -> &MvpPipelineConfig
Returns the pipeline config.
Sourcepub fn run(&self, input: &PointCloud) -> SpatialResult<MvpPipelineResult>
pub fn run(&self, input: &PointCloud) -> SpatialResult<MvpPipelineResult>
Runs the full MVP pipeline on the input cloud.
Trait Implementations§
Source§impl Clone for MvpPipeline
impl Clone for MvpPipeline
Source§fn clone(&self) -> MvpPipeline
fn clone(&self) -> MvpPipeline
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MvpPipeline
impl Debug for MvpPipeline
Source§impl PartialEq for MvpPipeline
impl PartialEq for MvpPipeline
Source§fn eq(&self, other: &MvpPipeline) -> bool
fn eq(&self, other: &MvpPipeline) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MvpPipeline
Auto Trait Implementations§
impl Freeze for MvpPipeline
impl RefUnwindSafe for MvpPipeline
impl Send for MvpPipeline
impl Sync for MvpPipeline
impl Unpin for MvpPipeline
impl UnsafeUnpin for MvpPipeline
impl UnwindSafe for MvpPipeline
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