pub struct OwnedTriple {
pub subject_type: SubjectType,
pub subject_value: String,
pub predicate: String,
pub object_type: ObjectType,
pub object_value: String,
pub object_datatype: Option<String>,
pub object_language: Option<String>,
pub graph: Option<String>,
pub subject_triple: Option<Box<OwnedTriple>>,
pub object_triple: Option<Box<OwnedTriple>>,
}Fields§
§subject_type: SubjectType§subject_value: String§predicate: String§object_type: ObjectType§object_value: String§object_datatype: Option<String>§object_language: Option<String>§graph: Option<String>§subject_triple: Option<Box<OwnedTriple>>§object_triple: Option<Box<OwnedTriple>>Trait Implementations§
Source§impl Clone for OwnedTriple
impl Clone for OwnedTriple
Auto Trait Implementations§
impl Freeze for OwnedTriple
impl RefUnwindSafe for OwnedTriple
impl Send for OwnedTriple
impl Sync for OwnedTriple
impl Unpin for OwnedTriple
impl UnwindSafe for OwnedTriple
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