pub struct NTriplesStarParser { /* private fields */ }Expand description
N-Triples-Star parser implementation
Implementations§
Source§impl NTriplesStarParser
impl NTriplesStarParser
Sourcepub fn session_context(&self) -> u64
pub fn session_context(&self) -> u64
Session context hash stamped onto emitted quads.
Sourcepub fn last_line_terms(&self) -> Option<&NTriplesLineTerms>
pub fn last_line_terms(&self) -> Option<&NTriplesLineTerms>
Term strings from the last successfully parsed line.
Trait Implementations§
Source§impl RdfStarParser for NTriplesStarParser
impl RdfStarParser for NTriplesStarParser
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 NTriplesStarParser
impl RefUnwindSafe for NTriplesStarParser
impl Send for NTriplesStarParser
impl Sync for NTriplesStarParser
impl Unpin for NTriplesStarParser
impl UnsafeUnpin for NTriplesStarParser
impl UnwindSafe for NTriplesStarParser
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