oxilean_std/data_structures/treapdata_traits.rs
1//! # TreapData - Trait Implementations
2//!
3//! This module contains trait implementations for `TreapData`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use super::types::TreapData;
12
13#[allow(dead_code)]
14impl Default for TreapData {
15 fn default() -> Self {
16 TreapData::new()
17 }
18}