Enum substrait_validator::output::diagnostic::Message
source · [−]pub enum Message {
Untyped(String),
ProstDecodeError(DecodeError),
IoError(Error),
UtfError(Utf8Error),
YamlScanError(ScanError),
JsonSchemaValidationError(JsonSchemaValidationError),
UriError(URIReferenceError),
GlobError(PatternError),
}Expand description
Enumeration for error message data we might encounter.
Variants
Untyped(String)
ProstDecodeError(DecodeError)
IoError(Error)
UtfError(Utf8Error)
YamlScanError(ScanError)
JsonSchemaValidationError(JsonSchemaValidationError)
UriError(URIReferenceError)
GlobError(PatternError)
Trait Implementations
sourceimpl Error for Message
impl Error for Message
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<DecodeError> for Message
impl From<DecodeError> for Message
sourcefn from(source: DecodeError) -> Self
fn from(source: DecodeError) -> Self
Converts to this type from the input type.
sourceimpl From<JsonSchemaValidationError> for Message
impl From<JsonSchemaValidationError> for Message
sourcefn from(source: JsonSchemaValidationError) -> Self
fn from(source: JsonSchemaValidationError) -> Self
Converts to this type from the input type.
sourceimpl From<PatternError> for Message
impl From<PatternError> for Message
sourcefn from(source: PatternError) -> Self
fn from(source: PatternError) -> Self
Converts to this type from the input type.
sourceimpl From<URIReferenceError> for Message
impl From<URIReferenceError> for Message
sourcefn from(source: URIReferenceError) -> Self
fn from(source: URIReferenceError) -> Self
Converts to this type from the input type.
sourceimpl From<ValidationError<'_>> for Message
impl From<ValidationError<'_>> for Message
sourcefn from(v: ValidationError<'_>) -> Self
fn from(v: ValidationError<'_>) -> Self
Converts to this type from the input type.
Auto Trait Implementations
impl !RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl !UnwindSafe for Message
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more