[][src]Struct directed_bijective_connection_graph::node_path::NodePath

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

Methods

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

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

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

pub fn from_vec(
    graph: &'a dyn DirectedBijectiveConnectionGraphFunctions,
    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 NodePath<'a>[src]

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

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

Auto Trait Implementations

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

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

impl<'a> Unpin for NodePath<'a>

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

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

Blanket Implementations

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

impl<T> From<T> for 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 = Infallible

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.

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]