Trait graphannis_core::graph::storage::WriteableGraphStorage [−][src]
pub trait WriteableGraphStorage: GraphStorage {
fn add_edge(&mut self, edge: Edge) -> Result<()>;
fn add_edge_annotation(
&mut self,
edge: Edge,
anno: Annotation
) -> Result<()>;
fn delete_edge(&mut self, edge: &Edge) -> Result<()>;
fn delete_edge_annotation(
&mut self,
edge: &Edge,
anno_key: &AnnoKey
) -> Result<()>;
fn delete_node(&mut self, node: NodeID) -> Result<()>;
fn calculate_statistics(&mut self);
}Expand description
Trait for accessing graph storages which can be written to.
Required methods
fn add_edge_annotation(&mut self, edge: Edge, anno: Annotation) -> Result<()>
fn add_edge_annotation(&mut self, edge: Edge, anno: Annotation) -> Result<()>
Add an annotation to an edge in this graph storage. The edge has to exist.
fn delete_edge(&mut self, edge: &Edge) -> Result<()>
fn delete_edge(&mut self, edge: &Edge) -> Result<()>
Delete an existing edge.
Delete the annotation (defined by the qualified annotation name in anno_key) for an edge.
fn delete_node(&mut self, node: NodeID) -> Result<()>
fn delete_node(&mut self, node: NodeID) -> Result<()>
Delete a node from this graph storage. This deletes both edges edges where the node is the source or the target node.
fn calculate_statistics(&mut self)
fn calculate_statistics(&mut self)
Re-calculate the statistics of this graph storage.