pub enum RudofError {
Show 52 variants
RudofConfigFromPathError {
path: String,
error: Error,
},
RudofConfigYamlError {
path: String,
error: Error,
},
QueryError {
str: String,
error: String,
},
StorageError {
error: String,
},
BaseIriError {
str: String,
error: String,
},
ShExCParserError {
error: String,
},
ShExJParserError {
error: String,
},
CompilingSchemaError {
error: String,
},
ShExValidatorUndefined {},
ShExValidatorError {
schema: String,
rdf_data: String,
query_map: String,
error: String,
},
ShExValidatorObtainingResultMapError {
schema: String,
rdf_data: String,
shapemap: String,
error: String,
},
MergeRDFDataFromReader {
format: String,
base: String,
reader_mode: String,
error: String,
},
Utf8Error {
error: String,
},
ShapeMapParseError {
str: String,
error: String,
},
ReadError {
error: String,
},
AddingEndpointError {
iri: IriS,
error: String,
},
NoShapeMap {
schema: String,
},
ResolvingImportsShExSchema {
error: String,
},
NoShExSchemaForResolvingImports,
InternalSHACLFormatNonReadable,
SHACLParseError {
error: String,
},
SHACLCompilationError {
error: String,
schema: Box<Schema>,
},
SHACLValidationError {
error: String,
schema: Box<Schema>,
},
SHACLEndpointValidationCreation {
error: String,
endpoint: SRDFSparql,
},
ParsingRDFDataReader {
error: String,
},
NoGraphNoFirstEndpoint,
NoShaclSchema,
NoShExSchemaToSerialize,
NoDCTAP,
ShEx2UmlWithoutShEx,
ShEx2PlantUmlError {
error: String,
},
ShEx2PlantUmlErrorAsPlantUML {
error: String,
},
ReadingShExPath {
path: String,
error: String,
},
ErrorFormattingSchema {
schema: String,
error: String,
},
ErrorFormattingShapeMap {
shapemap: String,
error: String,
},
ErrorWritingShExJson {
schema: String,
error: String,
},
NotImplemented {
msg: String,
},
NoShapeMapToSerialize,
NoShaclToSerialize,
NoInternalFormatForRDF,
SerializingSHACLInternal {
error: String,
},
WritingSHACL {
shacl: String,
error: String,
},
SerializingSHACL {
shacl: String,
error: String,
},
SerializingShEx {
error: String,
},
SerializingData {
error: String,
},
SerializingShacl {
error: String,
},
DCTAPReaderCSV {
error: String,
path: String,
},
ReadingDCTAPPath {
error: String,
path: String,
},
DCTAPReaderCSVReader {
error: String,
},
DCTAPReaderPathXLS {
error: String,
path: String,
format: String,
},
DCTAPReadXLSNoPath,
DCTap2ShEx {
error: String,
},
}
Variants§
RudofConfigFromPathError
RudofConfigYamlError
QueryError
StorageError
BaseIriError
ShExCParserError
ShExJParserError
CompilingSchemaError
ShExValidatorUndefined
ShExValidatorError
ShExValidatorObtainingResultMapError
MergeRDFDataFromReader
Utf8Error
ShapeMapParseError
ReadError
AddingEndpointError
NoShapeMap
ResolvingImportsShExSchema
NoShExSchemaForResolvingImports
InternalSHACLFormatNonReadable
SHACLParseError
SHACLCompilationError
SHACLValidationError
SHACLEndpointValidationCreation
ParsingRDFDataReader
NoGraphNoFirstEndpoint
NoShaclSchema
NoShExSchemaToSerialize
NoDCTAP
ShEx2UmlWithoutShEx
ShEx2PlantUmlError
ShEx2PlantUmlErrorAsPlantUML
ReadingShExPath
ErrorFormattingSchema
ErrorFormattingShapeMap
ErrorWritingShExJson
NotImplemented
NoShapeMapToSerialize
NoShaclToSerialize
NoInternalFormatForRDF
SerializingSHACLInternal
WritingSHACL
SerializingSHACL
SerializingShEx
SerializingData
SerializingShacl
DCTAPReaderCSV
ReadingDCTAPPath
DCTAPReaderCSVReader
DCTAPReaderPathXLS
DCTAPReadXLSNoPath
DCTap2ShEx
Trait Implementations§
Source§impl Debug for RudofError
impl Debug for RudofError
Source§impl Display for RudofError
impl Display for RudofError
Source§impl Error for RudofError
impl Error for RudofError
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 RudofError
impl !RefUnwindSafe for RudofError
impl Send for RudofError
impl Sync for RudofError
impl Unpin for RudofError
impl !UnwindSafe for RudofError
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more