pub trait TraverseState {
    type Net: IpNet;

    fn node(&self) -> &IpTrieNode;
    fn init(root: &IpTrieNode) -> Self;
    fn transit(&self, next_node: &IpTrieNode, current_bit: bool) -> Self;
    fn build(&self) -> Self::Net;
}
Expand description

Used for internal traversing.

You can simply ignore this trait.

Required Associated Types§

Required Methods§

Implementors§