pub enum GraphTarget {
NamedNode(NamedNode),
DefaultGraph,
NamedGraphs,
AllGraphs,
}
Expand description
A target RDF graph for update operations.
Could be a specific graph, all named graphs or the complete dataset.
Variants§
Trait Implementations§
Source§impl Clone for GraphTarget
impl Clone for GraphTarget
Source§fn clone(&self) -> GraphTarget
fn clone(&self) -> GraphTarget
Returns a copy 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 moreSource§impl Debug for GraphTarget
impl Debug for GraphTarget
Source§impl Display for GraphTarget
impl Display for GraphTarget
Source§impl From<GraphName> for GraphTarget
impl From<GraphName> for GraphTarget
Source§impl From<NamedNode> for GraphTarget
impl From<NamedNode> for GraphTarget
Source§impl Hash for GraphTarget
impl Hash for GraphTarget
Source§impl PartialEq for GraphTarget
impl PartialEq for GraphTarget
impl Eq for GraphTarget
impl StructuralPartialEq for GraphTarget
Auto Trait Implementations§
impl Freeze for GraphTarget
impl RefUnwindSafe for GraphTarget
impl Send for GraphTarget
impl Sync for GraphTarget
impl Unpin for GraphTarget
impl UnwindSafe for GraphTarget
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