pub struct CopyGraphOp {
pub source: Option<String>,
pub destination: Option<String>,
pub silent: bool,
}Expand description
Copy 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 CopyGraphOp
impl Clone for CopyGraphOp
Source§fn clone(&self) -> CopyGraphOp
fn clone(&self) -> CopyGraphOp
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 CopyGraphOp
impl RefUnwindSafe for CopyGraphOp
impl Send for CopyGraphOp
impl Sync for CopyGraphOp
impl Unpin for CopyGraphOp
impl UnwindSafe for CopyGraphOp
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