[][src]Struct smallgraph::Graph

pub struct Graph<T> {
    pub free: SmallVec<[(usize, usize); 128]>,
    pub nodes: SmallVec<[(usize, Option<T>); 128]>,
    pub connections: SmallVec<[(usize, usize); 256]>,
}

Fields

free: SmallVec<[(usize, usize); 128]>nodes: SmallVec<[(usize, Option<T>); 128]>connections: SmallVec<[(usize, usize); 256]>

Methods

impl<T> Graph<T>[src]

pub fn insert(&mut self, value: T) -> (usize, usize)[src]

pub fn directed_connect(
    &mut self,
    parent: (usize, usize),
    child: (usize, usize)
)
[src]

pub fn connect(&mut self, a: (usize, usize), b: (usize, usize))[src]

pub fn disconnect(&mut self, n: (usize, usize))[src]

pub fn is_connected(&mut self, a: (usize, usize), b: (usize, usize)) -> bool[src]

pub fn is_directed_connected(
    &mut self,
    parent: (usize, usize),
    child: (usize, usize)
) -> bool
[src]

pub fn remove(&mut self, n: (usize, usize)) -> Result<T, GraphError>[src]

pub fn get(&self, n: (usize, usize)) -> Result<&T, GraphError>[src]

pub fn get_mut(&mut self, n: (usize, usize)) -> Result<&mut T, GraphError>[src]

Auto Trait Implementations

impl<T> Unpin for Graph<T> where
    T: Unpin

impl<T> Send for Graph<T> where
    T: Send

impl<T> Sync for Graph<T> where
    T: Sync

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]