gdbstub/util/
mod.rs

1//! Private utility types used internally within `gdbstub`.
2//!
3//! These are all bits of functionality that _could_ exist as their own crates /
4//! libraries, and do not rely on any `gdbstub` specific infrastructure.
5
6pub mod managed_vec;
7
8pub(crate) mod dead_code_marker;