pub enum GraphExportFormat {
Cypher,
NetworkXJson,
JsonLd,
}Expand description
Supported graph export formats.
Variants§
Cypher
Neo4j Cypher CREATE statements
NetworkXJson
NetworkX-compatible JSON (node_link_graph format)
JsonLd
JSON-LD for semantic web
Trait Implementations§
Source§impl Clone for GraphExportFormat
impl Clone for GraphExportFormat
Source§fn clone(&self) -> GraphExportFormat
fn clone(&self) -> GraphExportFormat
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 moreSource§impl Debug for GraphExportFormat
impl Debug for GraphExportFormat
Source§impl PartialEq for GraphExportFormat
impl PartialEq for GraphExportFormat
impl Copy for GraphExportFormat
impl Eq for GraphExportFormat
impl StructuralPartialEq for GraphExportFormat
Auto Trait Implementations§
impl Freeze for GraphExportFormat
impl RefUnwindSafe for GraphExportFormat
impl Send for GraphExportFormat
impl Sync for GraphExportFormat
impl Unpin for GraphExportFormat
impl UnsafeUnpin for GraphExportFormat
impl UnwindSafe for GraphExportFormat
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