//! Traits for process tree storage backends.
//!
//! Implement `TreeStore` and `CacheStore` to provide your own storage
//! (e.g., moka cache, Redis, dashmap) while reusing the process tree
//! algorithms in [`crate::ops`].
use crate;
/// Trait for process tree storage.
///
/// Implement this trait to provide your own storage backend.
/// Trait for process info cache.
///
/// Implement this trait to provide your own cache backend.