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