#[repr(u8)]pub enum GraphEntry {
Node = 0,
Edge = 1,
}
Expand description
Variants§
Node = 0
Edge = 1
§Arguments
index
: raphEngine returns: Option<CowSelf::Node>
§Examples
use graph_theory::GraphEngine;
Trait Implementations§
Source§impl Clone for GraphEntry
impl Clone for GraphEntry
Source§fn clone(&self) -> GraphEntry
fn clone(&self) -> GraphEntry
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 GraphEntry
impl Debug for GraphEntry
impl Copy for GraphEntry
Auto Trait Implementations§
impl Freeze for GraphEntry
impl RefUnwindSafe for GraphEntry
impl Send for GraphEntry
impl Sync for GraphEntry
impl Unpin for GraphEntry
impl UnwindSafe for GraphEntry
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