//! # Binary Search Tree Visualizer
//!
//! This crate provides visualization tools for binary search trees, including both ASCII art and SVG generation.
//! It is great for educational purposes and debugging binary search tree implementations.
//!
//! ## Features
//! - ASCII art visualization of binary search trees
//! - SVG generation for high-quality tree visualization
//! - Simple and intuitive API
//! - Customizable visualization parameters
//! - Support for any type that implements `Ord` and `Display` traits
/// The binary search tree module.
/// The visualizer module, including ASCII and SVG visualizers.
pub use BinarySearchTree;
pub use ;
/// Error types for the binary search tree visualizer.
/// Result type for the binary search tree visualizer.
pub type Result<T> = Result;