Struct cranelift_isle::trie::TrieEdge [−][src]
pub struct TrieEdge {
pub range: PrioRange,
pub symbol: TrieSymbol,
pub node: TrieNode,
}
Expand description
An edge in our term trie.
Fields
range: PrioRange
The priority range for this edge’s sub-trie.
symbol: TrieSymbol
The match operation to perform for this edge.
node: TrieNode
This edge’s sub-trie.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for TrieEdge
impl UnwindSafe for TrieEdge
Blanket Implementations
Mutably borrows from an owned value. Read more