pub trait DebugLockManager: LockManager + Debug { }
Expand description
Trait marker to bound LockManager
with Debug
for use inside the public API.
This is not a user-implemented trait; it is a convenience alias for
LockManager + std::fmt::Debug
so adapters can be boxed and passed to the builder.