pub(crate) trait CloneIn<'new, T>where
T: 'new,{
// Required method
fn clone_in<const C: bool>(&self, bk: &'new Block<C>) -> Gc<T>;
}
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.