pub enum PipelineConstructionError {
CouldNotCreatePipelineFromContext(Rs2Exception, String),
}
Expand description
Enumeration of possible errors that can occur during pipeline construction.
Variants§
CouldNotCreatePipelineFromContext(Rs2Exception, String)
The pipeline could not be created from the context.
Trait Implementations§
Source§impl Debug for PipelineConstructionError
impl Debug for PipelineConstructionError
Source§impl Display for PipelineConstructionError
impl Display for PipelineConstructionError
Source§impl Error for PipelineConstructionError
impl Error for PipelineConstructionError
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 PipelineConstructionError
impl RefUnwindSafe for PipelineConstructionError
impl Send for PipelineConstructionError
impl Sync for PipelineConstructionError
impl Unpin for PipelineConstructionError
impl UnwindSafe for PipelineConstructionError
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