pub struct ParseOutcome {
pub total: u64,
pub skipped: u64,
pub bnode_count: u64,
pub prefixes: Vec<(String, String)>,
}Expand description
Outcome of parsing one input file.
Fields§
§total: u64§skipped: u64§bnode_count: u64Number of triples/quads with at least one blank node (subject or object).
prefixes: Vec<(String, String)>Prefix declarations encountered in the source, in iteration order. Empty for formats that do not carry prefixes (N-Triples, N-Quads, RDF/XML).
Trait Implementations§
Source§impl Clone for ParseOutcome
impl Clone for ParseOutcome
Source§fn clone(&self) -> ParseOutcome
fn clone(&self) -> ParseOutcome
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 ParseOutcome
impl Debug for ParseOutcome
Source§impl Default for ParseOutcome
impl Default for ParseOutcome
Source§fn default() -> ParseOutcome
fn default() -> ParseOutcome
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ParseOutcome
impl RefUnwindSafe for ParseOutcome
impl Send for ParseOutcome
impl Sync for ParseOutcome
impl Unpin for ParseOutcome
impl UnsafeUnpin for ParseOutcome
impl UnwindSafe for ParseOutcome
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