pub struct ClearGraphOp {
pub graph: Option<String>,
pub silent: bool,
}Expand description
Clear all triples from a graph.
Fields§
§graph: Option<String>Target graph (None = default graph, Some(“”) = all named, Some(iri) = specific graph).
silent: boolWhether to silently ignore errors.
Trait Implementations§
Source§impl Clone for ClearGraphOp
impl Clone for ClearGraphOp
Source§fn clone(&self) -> ClearGraphOp
fn clone(&self) -> ClearGraphOp
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 ClearGraphOp
impl RefUnwindSafe for ClearGraphOp
impl Send for ClearGraphOp
impl Sync for ClearGraphOp
impl Unpin for ClearGraphOp
impl UnwindSafe for ClearGraphOp
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