Enum donet_core::parser::error::PipelineError
source · pub enum PipelineError {
Parser(ParseError),
Semantics(SemanticError),
}
Variants§
Parser(ParseError)
Semantics(SemanticError)
Trait Implementations§
source§impl Debug for PipelineError
impl Debug for PipelineError
source§impl Display for PipelineError
impl Display for PipelineError
source§impl Error for PipelineError
impl Error for PipelineError
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()
source§impl From<ParseError> for PipelineError
impl From<ParseError> for PipelineError
source§fn from(source: ParseError) -> Self
fn from(source: ParseError) -> Self
Converts to this type from the input type.
source§impl From<SemanticError> for PipelineError
impl From<SemanticError> for PipelineError
source§fn from(source: SemanticError) -> Self
fn from(source: SemanticError) -> Self
Converts to this type from the input type.
source§impl ToErrorCode for PipelineError
impl ToErrorCode for PipelineError
fn error_code(&self) -> &str
Auto Trait Implementations§
impl Freeze for PipelineError
impl RefUnwindSafe for PipelineError
impl Send for PipelineError
impl Sync for PipelineError
impl Unpin for PipelineError
impl UnwindSafe for PipelineError
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