pub struct AddGraphOp {
pub source: Option<String>,
pub destination: Option<String>,
pub silent: bool,
}Expand description
Add (merge) triples from one graph to another.
Fields§
§source: Option<String>Source graph.
destination: Option<String>Destination graph.
silent: boolWhether to silently ignore errors.
Trait Implementations§
Source§impl Clone for AddGraphOp
impl Clone for AddGraphOp
Source§fn clone(&self) -> AddGraphOp
fn clone(&self) -> AddGraphOp
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 AddGraphOp
impl RefUnwindSafe for AddGraphOp
impl Send for AddGraphOp
impl Sync for AddGraphOp
impl Unpin for AddGraphOp
impl UnwindSafe for AddGraphOp
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