//! # PathCache - Trait Implementations
//!
//! This module contains trait implementations for `PathCache`.
//!
//! ## Implemented Traits
//!
//! - `Default`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
use super::types::PathCache;
impl Default for PathCache {
fn default() -> Self {
PathCache::new()
}
}