pub struct N3StarParser { /* private fields */ }Expand description
N3-Star parser implementation
Implementations§
Source§impl N3StarParser
impl N3StarParser
Trait Implementations§
Source§impl RdfStarParser for N3StarParser
impl RdfStarParser for N3StarParser
Source§fn parse_embedded_triple(
&mut self,
input: &[u8],
) -> Result<(u64, [u64; 3]), RdfStarParseError>
fn parse_embedded_triple( &mut self, input: &[u8], ) -> Result<(u64, [u64; 3]), RdfStarParseError>
Parse an embedded triple from format-specific syntax Read more
Source§fn parse_triple(
&mut self,
input: &[u8],
) -> Result<(u64, u64, u64), RdfStarParseError>
fn parse_triple( &mut self, input: &[u8], ) -> Result<(u64, u64, u64), RdfStarParseError>
Parse a regular triple (subject, predicate, object)
Source§fn parse_quad(
&mut self,
input: &[u8],
) -> Result<(u64, u64, u64, u64), RdfStarParseError>
fn parse_quad( &mut self, input: &[u8], ) -> Result<(u64, u64, u64, u64), RdfStarParseError>
Parse a quad (subject, predicate, object, graph) Read more
Source§fn supports_quads(&self) -> bool
fn supports_quads(&self) -> bool
Check if this parser supports quad formats (named graphs)
Source§fn supports_named_graphs(&self) -> bool
fn supports_named_graphs(&self) -> bool
Check if this parser supports named graphs
Source§fn format_name(&self) -> &'static str
fn format_name(&self) -> &'static str
Get the format name for error reporting
Auto Trait Implementations§
impl Freeze for N3StarParser
impl RefUnwindSafe for N3StarParser
impl Send for N3StarParser
impl Sync for N3StarParser
impl Unpin for N3StarParser
impl UnsafeUnpin for N3StarParser
impl UnwindSafe for N3StarParser
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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