pub enum BridgeError {
InvalidSchema(String),
ParseError {
location: ParseLocation,
message: String,
},
UnsupportedShape(String),
PropertyNotFound {
property: String,
},
ClassNotFound {
class: String,
},
ProvenanceError(String),
InvalidIri {
iri: String,
reason: String,
},
MissingField {
field: String,
context: String,
},
ValidationError(String),
IndexError(String),
CacheError(String),
}Variants§
InvalidSchema(String)
ParseError
UnsupportedShape(String)
PropertyNotFound
ClassNotFound
ProvenanceError(String)
InvalidIri
MissingField
ValidationError(String)
IndexError(String)
CacheError(String)
Implementations§
Source§impl BridgeError
impl BridgeError
Sourcepub fn parse_error(
line: usize,
column: usize,
message: impl Into<String>,
) -> Self
pub fn parse_error( line: usize, column: usize, message: impl Into<String>, ) -> Self
Create a parse error with location
Sourcepub fn parse_error_with_context(
line: usize,
column: usize,
message: impl Into<String>,
context: impl Into<String>,
) -> Self
pub fn parse_error_with_context( line: usize, column: usize, message: impl Into<String>, context: impl Into<String>, ) -> Self
Create a parse error with location and context
Sourcepub fn suggestion(&self) -> Option<String>
pub fn suggestion(&self) -> Option<String>
Suggest a fix for this error
Trait Implementations§
Source§impl Debug for BridgeError
impl Debug for BridgeError
Source§impl Display for BridgeError
impl Display for BridgeError
Source§impl Error for BridgeError
impl Error for BridgeError
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 BridgeError
impl RefUnwindSafe for BridgeError
impl Send for BridgeError
impl Sync for BridgeError
impl Unpin for BridgeError
impl UnwindSafe for BridgeError
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.