pub enum PipelineActivationError {
CouldNotStartPipelineError(Rs2Exception, String),
ConfigCannotBeResolved,
}
Expand description
Enumeration of possible errors that can occur when trying to start the pipeline.
Variants§
CouldNotStartPipelineError(Rs2Exception, String)
The pipeline could not be started due to an internal exception.
ConfigCannotBeResolved
The configuration cannot be resolved.
See InactivePipeline::can_resolve
for more information.
Trait Implementations§
Source§impl Debug for PipelineActivationError
impl Debug for PipelineActivationError
Source§impl Display for PipelineActivationError
impl Display for PipelineActivationError
Source§impl Error for PipelineActivationError
impl Error for PipelineActivationError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for PipelineActivationError
impl RefUnwindSafe for PipelineActivationError
impl Send for PipelineActivationError
impl Sync for PipelineActivationError
impl Unpin for PipelineActivationError
impl UnwindSafe for PipelineActivationError
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