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.
type Output = MaybeUninit<Self>
type Output = MaybeUninit<Self>
The type that is used to store values of Self
inside of a ControlledOption
. This might
be Self
itself, if your niche is a valid instance of the type, but which violates some
runtime constraint. But if you cannot easily create your niche as an instance of Self
,
you can use some other type, you can use some other type instead. Read more
Returns the niche value for this type that should be used to represent None
for a
ControlledOption
. Read more
Returns whether value is the niche value for this type.
Transforms a non-niche value of this type into its Output
type. When Output
is Self
,
this will be the identity function. Read more
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