pub trait BorrowType {
    const TRAVERSAL_PERMIT: bool = true;
}

Provided Associated Constants§

source

const TRAVERSAL_PERMIT: bool = true

If node references of this borrow type allow traversing to other nodes in the tree, this constant is set to true. It can be used for a compile-time assertion.

Implementors§