1 2 3 4 5 6 7 8 9
use crate::prelude::AtomicContextManager; pub trait TClone { fn clone(&self) -> Self; } pub trait TCloneContext { fn clone_context(&self) -> AtomicContextManager; }