pub struct RdfSyntaxError {
pub message: String,
pub position: Option<TextPosition>,
pub context: Option<String>,
}
Expand description
Syntax error during RDF parsing
Fields§
§message: String
Error message
position: Option<TextPosition>
Position where error occurred
context: Option<String>
Context around the error (line content)
Implementations§
Source§impl RdfSyntaxError
impl RdfSyntaxError
Sourcepub fn with_position(message: impl Into<String>, position: TextPosition) -> Self
pub fn with_position(message: impl Into<String>, position: TextPosition) -> Self
Create a syntax error with position
Sourcepub fn with_context(
message: impl Into<String>,
position: TextPosition,
context: impl Into<String>,
) -> Self
pub fn with_context( message: impl Into<String>, position: TextPosition, context: impl Into<String>, ) -> Self
Create a syntax error with position and context
Sourcepub fn at_position(self, position: TextPosition) -> Self
pub fn at_position(self, position: TextPosition) -> Self
Add position information to the error
Sourcepub fn with_context_str(self, context: impl Into<String>) -> Self
pub fn with_context_str(self, context: impl Into<String>) -> Self
Add context information to the error
Trait Implementations§
Source§impl Clone for RdfSyntaxError
impl Clone for RdfSyntaxError
Source§fn clone(&self) -> RdfSyntaxError
fn clone(&self) -> RdfSyntaxError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RdfSyntaxError
impl Debug for RdfSyntaxError
Source§impl<'de> Deserialize<'de> for RdfSyntaxError
impl<'de> Deserialize<'de> for RdfSyntaxError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for RdfSyntaxError
impl Display for RdfSyntaxError
Source§impl Error for RdfSyntaxError
impl Error for RdfSyntaxError
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()
Source§impl From<RdfSyntaxError> for FormatError
impl From<RdfSyntaxError> for FormatError
Source§fn from(err: RdfSyntaxError) -> Self
fn from(err: RdfSyntaxError) -> Self
Converts to this type from the input type.
Source§impl From<RdfSyntaxError> for RdfParseError
impl From<RdfSyntaxError> for RdfParseError
Source§fn from(err: RdfSyntaxError) -> Self
fn from(err: RdfSyntaxError) -> Self
Converts to this type from the input type.
Source§impl Hash for RdfSyntaxError
impl Hash for RdfSyntaxError
Source§impl PartialEq for RdfSyntaxError
impl PartialEq for RdfSyntaxError
Source§impl Serialize for RdfSyntaxError
impl Serialize for RdfSyntaxError
impl Eq for RdfSyntaxError
impl StructuralPartialEq for RdfSyntaxError
Auto Trait Implementations§
impl Freeze for RdfSyntaxError
impl RefUnwindSafe for RdfSyntaxError
impl Send for RdfSyntaxError
impl Sync for RdfSyntaxError
impl Unpin for RdfSyntaxError
impl UnwindSafe for RdfSyntaxError
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.