Struct stack_graphs::paths::SymbolStack [−][src]
#[repr(C)]pub struct SymbolStack { /* fields omitted */ }
Expand description
A sequence of symbols that describe what we are currently looking for while in the middle of the path-finding algorithm.
Implementations
Returns an empty symbol stack.
Pushes a new ScopedSymbol
onto the front of this symbol stack.
Removes and returns the ScopedSymbol
at the front of this symbol stack. If the stack
is empty, returns None
.
Trait Implementations
Performs the conversion.
Auto Trait Implementations
impl RefUnwindSafe for SymbolStack
impl Send for SymbolStack
impl Sync for SymbolStack
impl Unpin for SymbolStack
impl UnwindSafe for SymbolStack
Blanket Implementations
Mutably borrows from an owned value. Read more