[][src]Struct dynamic_graph::Cursor

pub struct Cursor<'this, 'id: 'this, T: 'this> { /* fields omitted */ }

Methods

impl<'this, 'id: 'this, N: 'this, E: 'this, NodeType: 'this> Cursor<'this, 'id, NodeType> where
    NodeType: GraphNode<Node = N, Edge = E>, 
[src]

pub fn at(&self) -> GraphPtr<'id, NodeType>[src]

Returns a pointer to the current node the cursor points to.

pub fn is_at(&self, dst: GraphPtr<'id, NodeType>) -> bool[src]

Returns true if the cursor points to dst.

pub fn get(&self) -> &N[src]

Returns a reference to payload of the current node.

pub fn jump(&mut self, dst: GraphPtr<'id, NodeType>)[src]

Makes the cursor point to the dst.

impl<'this, 'id: 'this, N: 'this, E: 'this> Cursor<'this, 'id, NamedNode<N, E>>[src]

pub fn iter(
    &self
) -> impl Iterator<Item = GraphIterRes<Edge<&N, &E>, GraphPtr<'id, NamedNode<N, E>>>>
[src]

Returns an iterator over edges and node pointers attached to the current node.

pub fn get_edge(
    &self,
    dst: GraphPtr<'id, NamedNode<N, E>>
) -> Option<Edge<&N, &E>>
[src]

Returns Some if dst is attached to the current node and None otherwise.

Trait Implementations

impl<'this, 'id: 'this, T: Clone + 'this> Clone for Cursor<'this, 'id, T>[src]

impl<'this, 'id: 'this, T: Copy + 'this> Copy for Cursor<'this, 'id, T>[src]

impl<'this, 'id: 'this, N: 'this, E: 'this> Deref for Cursor<'this, 'id, NamedNode<N, E>>[src]

Relies on undefined behavior and should not be used

type Target = NamedNode<'id, N, E>

The resulting type after dereferencing.

impl<'this, 'id: 'this, T: Eq + 'this> Eq for Cursor<'this, 'id, T>[src]

impl<'this, 'id: 'this, T: PartialEq + 'this> PartialEq<Cursor<'this, 'id, T>> for Cursor<'this, 'id, T>[src]

impl<'this, 'id: 'this, T: 'this> StructuralEq for Cursor<'this, 'id, T>[src]

impl<'this, 'id: 'this, T: 'this> StructuralPartialEq for Cursor<'this, 'id, T>[src]

Auto Trait Implementations

impl<'this, 'id, T> RefUnwindSafe for Cursor<'this, 'id, T> where
    T: RefUnwindSafe

impl<'this, 'id, T> !Send for Cursor<'this, 'id, T>

impl<'this, 'id, T> !Sync for Cursor<'this, 'id, T>

impl<'this, 'id, T> Unpin for Cursor<'this, 'id, T>

impl<'this, 'id, T> !UnwindSafe for Cursor<'this, 'id, T>

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 = 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.