pub struct StoredTriple {
pub id: String,
pub subject: String,
pub predicate: String,
pub object: String,
pub graph: Option<String>,
pub confidence: f64,
pub source: Option<String>,
}Expand description
A retrieved triple with all metadata.
Fields§
§id: String§subject: String§predicate: String§object: String§graph: Option<String>§confidence: f64§source: Option<String>Trait Implementations§
Source§impl Clone for StoredTriple
impl Clone for StoredTriple
Source§fn clone(&self) -> StoredTriple
fn clone(&self) -> StoredTriple
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 moreAuto Trait Implementations§
impl Freeze for StoredTriple
impl RefUnwindSafe for StoredTriple
impl Send for StoredTriple
impl Sync for StoredTriple
impl Unpin for StoredTriple
impl UnsafeUnpin for StoredTriple
impl UnwindSafe for StoredTriple
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