pub struct InsertTripleOp {
pub subject: TripleComponent,
pub predicate: TripleComponent,
pub object: TripleComponent,
pub graph: Option<String>,
pub input: Option<Box<LogicalOperator>>,
}Expand description
Insert RDF triples.
Fields§
§subject: TripleComponentSubject of the triple.
predicate: TripleComponentPredicate of the triple.
object: TripleComponentObject of the triple.
graph: Option<String>Named graph (optional).
input: Option<Box<LogicalOperator>>Input operator (provides variable bindings).
Trait Implementations§
Source§impl Clone for InsertTripleOp
impl Clone for InsertTripleOp
Source§fn clone(&self) -> InsertTripleOp
fn clone(&self) -> InsertTripleOp
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 InsertTripleOp
impl RefUnwindSafe for InsertTripleOp
impl Send for InsertTripleOp
impl Sync for InsertTripleOp
impl Unpin for InsertTripleOp
impl UnwindSafe for InsertTripleOp
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