pub struct TrigStarParser { /* private fields */ }Expand description
Trig-Star parser implementation
Implementations§
Source§impl TrigStarParser
impl TrigStarParser
Sourcepub fn set_current_graph(&mut self, graph_hash: u64)
pub fn set_current_graph(&mut self, graph_hash: u64)
Set the current named graph
Sourcepub fn current_graph(&self) -> u64
pub fn current_graph(&self) -> u64
Get the current named graph
Sourcepub fn session_context(&self) -> u64
pub fn session_context(&self) -> u64
Session context hash used when no explicit GRAPH block is active.
Trait Implementations§
Source§impl RdfStarParser for TrigStarParser
impl RdfStarParser for TrigStarParser
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 TrigStarParser
impl RefUnwindSafe for TrigStarParser
impl Send for TrigStarParser
impl Sync for TrigStarParser
impl Unpin for TrigStarParser
impl UnsafeUnpin for TrigStarParser
impl UnwindSafe for TrigStarParser
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