pub enum GraphFormat {
VFLegacy,
EdgeList,
}Expand description
Graph file format for loading.
Variants§
VFLegacy
VF text/binary format used by MIVIA datasets (.grf files).
EdgeList
Simple edge list format (one edge per line as “u v”).
Trait Implementations§
Source§impl Clone for GraphFormat
impl Clone for GraphFormat
Source§fn clone(&self) -> GraphFormat
fn clone(&self) -> GraphFormat
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 GraphFormat
impl Debug for GraphFormat
Source§impl PartialEq for GraphFormat
impl PartialEq for GraphFormat
impl Copy for GraphFormat
impl Eq for GraphFormat
impl StructuralPartialEq for GraphFormat
Auto Trait Implementations§
impl Freeze for GraphFormat
impl RefUnwindSafe for GraphFormat
impl Send for GraphFormat
impl Sync for GraphFormat
impl Unpin for GraphFormat
impl UnwindSafe for GraphFormat
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