Struct cranelift_isle::trie::TrieEdge
source · [−]pub struct TrieEdge {
pub prio: Prio,
pub symbol: TrieSymbol,
pub node: TrieNode,
}
Expand description
An edge in our term trie.
Fields
prio: Prio
The priority 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 Send for TrieEdge
impl Sync for TrieEdge
impl Unpin for TrieEdge
impl UnwindSafe for TrieEdge
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