pub enum NodeKind {
Static(String),
Parameter,
CatchAll,
}
Expand description
The Kind of a node.
Variants
Static(String)
A static node with a path
Parameter
A named node
CatchAll
A catch-all node
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for NodeKind
impl Send for NodeKind
impl Sync for NodeKind
impl Unpin for NodeKind
impl UnwindSafe for NodeKind
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more