[][src]Struct gt_graph_path::GraphPath

pub struct GraphPath<'a> { /* fields omitted */ }

Methods

impl<'a> GraphPath<'a>[src]

pub fn new(graph: &'a dyn Graph) -> Self[src]

pub fn new_with_initial_size(graph: &'a dyn Graph, size: usize) -> Self[src]

pub fn from_vec(graph: &'a dyn Graph, src: Vec<Node>) -> Self[src]

pub fn push_back(&mut self, n: Node)[src]

pub fn inner_path(&self) -> &Vec<Node>[src]

pub fn inner_path_mut(&mut self) -> &mut Vec<Node>[src]

pub fn is_valid(&self) -> bool[src]

Trait Implementations

impl<'a> Clone for GraphPath<'a>[src]

impl<'a> Debug for GraphPath<'a>[src]

impl<'a> PartialEq<GraphPath<'a>> for GraphPath<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for GraphPath<'a>

impl<'a> !Send for GraphPath<'a>

impl<'a> !Sync for GraphPath<'a>

impl<'a> Unpin for GraphPath<'a>

impl<'a> !UnwindSafe for GraphPath<'a>

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = !

The type returned in the event of a conversion error.

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.