pub struct DspPipeline { /* private fields */ }Expand description
Builder for constructing a DSP processing pipeline.
Implementations§
Source§impl DspPipeline
impl DspPipeline
Sourcepub fn stage(
self,
stage: impl DspStage + 'static,
placement: StagePlacement,
) -> Self
pub fn stage( self, stage: impl DspStage + 'static, placement: StagePlacement, ) -> Self
Add a processing stage with placement hint.
Sourcepub fn build(self) -> Result<DspPipelineHandle, FabricError>
pub fn build(self) -> Result<DspPipelineHandle, FabricError>
Build the pipeline into a runnable handle.
Auto Trait Implementations§
impl Freeze for DspPipeline
impl !RefUnwindSafe for DspPipeline
impl !Send for DspPipeline
impl !Sync for DspPipeline
impl Unpin for DspPipeline
impl !UnwindSafe for DspPipeline
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