Skip to main content

oxilean_kernel/arena/
idxrange_traits.rs

1//! # IdxRange - Trait Implementations
2//!
3//! This module contains trait implementations for `IdxRange`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Debug`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use super::types::IdxRange;
12
13impl<T> std::fmt::Debug for IdxRange<T> {
14    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
15        write!(f, "IdxRange({}..{})", self.start.raw, self.end.raw)
16    }
17}