oxilean-kernel 0.1.2

OxiLean kernel - The trusted computing base for type checking
Documentation
//! # NameTrie - Trait Implementations
//!
//! This module contains trait implementations for `NameTrie`.
//!
//! ## Implemented Traits
//!
//! - `Default`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)

use super::types::NameTrie;

impl<V> Default for NameTrie<V> {
    fn default() -> Self {
        Self {
            value: None,
            string_children: Vec::new(),
            num_children: Vec::new(),
        }
    }
}