pub struct LoadGraphOp {
pub source: String,
pub destination: Option<String>,
pub silent: bool,
}Expand description
Load data from a URL into a graph.
Fields§
§source: StringSource URL to load data from.
destination: Option<String>Destination graph (None = default graph).
silent: boolWhether to silently ignore errors.
Trait Implementations§
Source§impl Clone for LoadGraphOp
impl Clone for LoadGraphOp
Source§fn clone(&self) -> LoadGraphOp
fn clone(&self) -> LoadGraphOp
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 LoadGraphOp
impl RefUnwindSafe for LoadGraphOp
impl Send for LoadGraphOp
impl Sync for LoadGraphOp
impl Unpin for LoadGraphOp
impl UnwindSafe for LoadGraphOp
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