1use super::{Core, Handle};
2
3impl Handle {
4 pub(super) fn trace_core(&self, core: Box<Core>) -> Box<Core> {
5 core
6 }
7}
8